Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
How can i create a help for my dashboard for users that are try to use that one. Please give me suggestion.
Regards,
Anand
Hi,
In almost every object there is a help text.
You can specify the help there and it will be populated.
Regards,
Kaushik Solanki
Hi Kaushik,
Yes agreed but i want to know that there is some pop up menus and arrow mark small pop windows are display when click on any button. How this can be achieve please provide help.
Regards,
Anand
Hi,
If you want to populate the help after clicking on button, then you can use the conditonal textbox.
Meaning you can write the help text in textbox, conditionally show it.
Regards,
Kaushik Solanki
Hi,
How can i use a text box and show help conditionally please if you have any sample file for that if so please provide it.
Regards,
Anand
Hi Anand,
you also could use the Help Text on object Caption. It will display a question mark on the object caption and a popup on mouse over.
- Ralf
Hi,
Its so simple.
You have to create a textbox. Write the text(Help) you want to display.
Create a variable say vHelpVisibility assign value 1.
Go to Layout tab in properties. of textbox -> show conditional.
Type expression as if(vHelpVisibility =1,1,0)
Now on button(which will be used to show and hide the help) click toogle the value of the variable.
Meaning on button click add action as external -> set variable -> give variable name as vHelpVisibility and value as
if(vHelpVisibility =1,1,0)
Regards,
Kaushik Solanki