Skip to main content
Announcements
July 15, NEW Customer Portal: Initial launch will improve how you submit Support Cases. IMPORTANT DETAILS
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

showing and hiding of List box

Hi,

i have three list boxes ie name,dep,college

if i select any one of the list box field values,other two list boxes should be hide,,,,only the currently selected list box to be displayed.

ex,if i select dep field list box the other name,college field list box not to be shown.

pls,,help me out

thanks in advance

1 Reply
john_duffy
Partner - Creator III
Partner - Creator III

Hello.

In the list box layout tab change the show option from Always to Conditional. Add an expression using the getselectedcount command to minimze the list box based on a selection in another list box. For example, the expresion in the NAME list box would be

= if(getselectedcount(DEPT) = 0 and getselectedcount(COLLEGE) = 0,true(),false())

See the attached application.

John.