Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
my req is i need to create a Button in front end if i click on that action need to perform is one stright table report need to be generated with that action pls tell me how ?
first create a variable like vActive and set it's value to 0.then use the action set variable in button action list and set the variable value to 1.no put a layout condition in the straight table vactive=1.this should work.
cheers
Hi
First Create a Variable from Variable Overview (CTRL+ALT+V) as vShowHide=1
Create Button -> General Tab -> specify Text as =if($(vShowHide)=1,'hide','show') -> Actions Tab -> Select Action Type as External and Action as Set Variable -> Specify Variable as vShowHide and Value as =$(vShowHide)*-1 --> Now go to Straight Table Chart Properties and in Layout Tab, Under Show, Specify Conditional Value as vShowHide=1 -> Click Apply -> Click OK.
Now come to button and click Show, Chart will be displayed and click once again the button, the text will be changed to hide and the chart will be hidden.
In this way, we can achieve this requirement with 1 button object ONLY.
Thanks
Satish
wru present