Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Show and Hide Object Based on Button

I have one Object(Table Box).

my requirement is how to show and hide Object with button..i am using Personal Edition.please don't send qvw Applications. i need steps(How to we do the above requirement)

4 Replies
Anonymous
Not applicable
Author

use this thread

Re: Show/Hide from the click of a textbox

Thanks

BKC

avinashelite

Hi,

Steps:single button to handle show and hide

1.create a variable with value as 0

2.create a button with the following code

=if(not vShow,'show','Hide')

3.Go to button properties> action > select externale variable > and set the value to =not vShow

4.Go to text box and layout then conditional : make it as value =not vShow

this will do

buzzy996
Master II
Master II

hey,don't post again & again for same information ..pls.

use this,

Hi,

Anonymous
Not applicable
Author

or you can just assign values to variable

set variable action as follows

vShow=1-vShow

and text display can be changed to give next action on button click

if(vShow,'Hide','Show')