Making a control(single line text box) visible when 'other' is chosen from multiple check boxes.

  • 26 February 2020
  • 2 replies
  • 23 views

Badge

I'm trying to have a single line text box pop up when 'other' is chosen from a group of choices. Multiple choices are allowed, I just want to have the control be visible when that individual check box is clicked. Attached is the referenced control. Thanks to any and all help!


2 replies

Badge +2
Try adding this rule in the panel that has the single line text.

not(name control=='Other')

check the hide button
Badge +2
If you are using a multi check you can use the inArray() function in the rule instead of equals.

inArray(control,"Other")

Reply