Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all
I want to show a slider when a field of a list box selected and hide when it is unselected how can do this?
like in image (if cus10 select/unselect the last slider show/hide)
thanks
Hi Hossein,
Can you try the below (write it in the Conditional property of the slider):
=GetSelectedCount(WriteHereTheFieldNameAsInScript) > 0 and SubStringCount(';' & Concat(WriteHereTheFieldNameAsInScript, ';') & ';', ';WriteHereTheValueRequiredToShowTheSlider;') = 1
For example:
=GetSelectedCount(Customer) > 0 and SubStringCount(';' & Concat(Customer, ';') & ';', ';CUS10;') = 1
Hi,
In the Layout properties of the slider write
=GetSelectedCount(YourListboxfieldNamehere)=1
Ex:-
=GetSelectedCount(CustomerName)=1
Regards
Anand
dear Anand
I write this bit it would error
=GetSelectedCount(CUS10)=1
Hi,
Is CUS10 is field name or value of any field?
Regards
hope this helps you,find sample in attachment
try this
=getselectedcount(listboxname)>=1 in layout tab >conditional> write this condition
Hope this helps you.
Vikas
Dear Bhawna Gupta
actually it would be correct but not something that I wanted
I want to remove slider when it unselected otherwise show it
for example when select cus1 , cus2 and cus10
show 3 slider
thanks
Its field name
=getfieldselections(fieldname)>=1 > in layout > conditional