Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need small help from you. I am not able to conditionally show/hide any alternate state object.
Eg.
I have created three list boxes which is showing different information (eg.KPI,Margin).Now I want to show/hide Alternate list box object based on this condition GetSelectedCount(KPI)>=1 .Normal list box object is working as expected but getting problem when define Alternate Sate on the same listbox.
Please help me to get out this problem and also share any lights on the above issue.
Thanks for advance help.
Thanks and Regards
Shyam
Your listbox is in your default state, your object is in your alternate state, so your expression needs to reference the default state if you want it to work.
Try GetSelectedCount(KPI,true(),'$')>=1
As your expression.