Suggestions to make a contextuel help for my users

Hi,

I searching to help my users using some contextuel help in my app. Exist some way to make a sliding panel using a small icon. It’s like a double panel on the same page. This is not a normal slider for contents but and overloaded content on the side open for helping purposes. I tried a button action but not nice.
Advise or other suggestions guys

Many thanks, Romi

You could probably do something clever with CSS, but what I usually do is use a Hint component with an action that toggles visibility. Here is an example:

CleanShot 2025-01-11 at 15.39.16

2 Likes

Sorry new user not well experimented. I’d tried with a button that show notification (not happy, not a good place). What are you using here? It’s like a panel with button and something that open? what are the composants, please.
thanks

.

1 Like

Found Hint with action but toggle what? Data or Interaction but I can’t fit your sample one a panel, plz

  • Create a User Specific boolean column in the table your screen is attached to
  • Add two hint components to your screen.
  • Set opposite visibility conditions on the two hint components. One should be shown when the User Specific column is checked, the other should be shown when it is not checked
  • Create a workflow (action) with two branches:
    – If User Specific column is checked
    — Set Column Values → User Specific Column → Clear Value
    – Else
    — Set Column Values → User Specific Column → true
  • Configure both Hint components to use the above workflow
3 Likes