Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a strage requirment.
I have a multibox.
So generally we can select multiple values in a field.
But my req is:
it dnt allow to select at a time multiple values?
Is this possible?
Thanks in advance.
If you want always one selected, you can create a listbox for the same field and set the listbox for always one selected.
If you just want to not allow multiple selections, you can created a trigger for the field. The action for the trigger would be Clear Field. The expression would be something like: if(GetSelectedCount(FieldName)>0,'FieldName')
If you want always one selected, you can create a listbox for the same field and set the listbox for always one selected.
If you just want to not allow multiple selections, you can created a trigger for the field. The action for the trigger would be Clear Field. The expression would be something like: if(GetSelectedCount(FieldName)>0,'FieldName')