Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Issue with Hiding/showing in alternate state

 

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

 

1 Reply
morganaaron
Specialist
Specialist

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.