Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello everyone
Can someone please tell me the steps to turn off the multi select option in listbox
Thanks a lot for your support
No need of any macro. You need to use only field trigger. Below is the expression for field trigger.
Add a select in filed action into the corresponding fieild.
For example :
field column use the below expression
if(GetSelectedCount(CustomerID)>0,'CustomerID')
Searchstring:
SubField(concat(CustomerID,'|'),'|',1)
Please find the attached application for reference.
I hope this helps! Let me know incase of any concerns/questions
Thanks,
Sibin Jacob.C
If you want always and only one value selected, select a single value, then open list box properties and enable 'Always One selected Value' on general tab.
You can use trigger also for restricting the multiselect.
can you please tell me how to trigger macro
No need of any macro. You need to use only field trigger. Below is the expression for field trigger.
Add a select in filed action into the corresponding fieild.
For example :
field column use the below expression
if(GetSelectedCount(CustomerID)>0,'CustomerID')
Searchstring:
SubField(concat(CustomerID,'|'),'|',1)
Please find the attached application for reference.
I hope this helps! Let me know incase of any concerns/questions
Thanks,
Sibin Jacob.C
Thanks Sibin . Its working fine