What I have :
I have a search textbox (Textbox5).
I have a Button that initiates a sql server proc.
I have a label(Label17) that displays the results from the sql server proc.(numeric value)
What I need:
If someone starts to initiate another search in Textbox 5 i need the Label17 to be NOT visible until they
press the Search Button again.
When they press the Button Label17 will then appear again.
Thanks
Dave
Solved! Go to Solution.
You can use the Onselect Property of TextBox, Set the variable VarShowHideLabel to false on Onselect on Textbox
UpdateContext({varShowHideLabel: false})
And on Button onselect write below code
UpdateContext({varShowHideLabel: true})
at last set, the visible property of the Label to
varShowHideLabel.
Regards
Amol Kavnekar
If this reply helped you to solve the issue, please mark the post as Accepted Solution. Marking this post as Accepted Solution, will help many other users to use this post to solve same or similar issue without re-posting the issue in the group. Saves a lot of time for everyone. |
You can use the Onselect Property of TextBox, Set the variable VarShowHideLabel to false on Onselect on Textbox
UpdateContext({varShowHideLabel: false})
And on Button onselect write below code
UpdateContext({varShowHideLabel: true})
at last set, the visible property of the Label to
varShowHideLabel.
Regards
Amol Kavnekar
If this reply helped you to solve the issue, please mark the post as Accepted Solution. Marking this post as Accepted Solution, will help many other users to use this post to solve same or similar issue without re-posting the issue in the group. Saves a lot of time for everyone. |
User | Count |
---|---|
261 | |
128 | |
99 | |
48 | |
47 |