Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
helen_pip
Creator III
Creator III

Help Page

Hello

I have created a button called "HELP" in a document which I want to activate a Text Object.   The Text Object will appear to the far right of my document page and list the help information of the page

I need to know what actions I need to apply to my HELP button and then how to close down the text object when users have finished reading it

Does anyone have any suggestions?

Thanks

Helen

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Hi Helen,

Check the document attached on how to use a variable to show/hide an object from a button using actions.

Hope that helps.

Miguel

View solution in original post

3 Replies
Miguel_Angel_Baeyens

Hi Helen,

Check the document attached on how to use a variable to show/hide an object from a button using actions.

Hope that helps.

Miguel

helen_pip
Creator III
Creator III
Author

Thank you!  This is exactly what I required

Thanks

Helen

flipside
Partner - Specialist II
Partner - Specialist II

An alternative way which avoids variables is to load a table for each object you want to control ...

HelpBox:

Load * inline [

TX01

0

1];

... then create your text box with a conditional show (TX01=1 for my example).  Your button then just needs an action which toggle selects on the field TX01 for value 1.  You can also toggle the button text like this ...

=If(TX01=1,'Hide Help','Show Help')

flipside