Showing a text box based on selection in drop box

1
Hi, I would like to create a from with a drop box that contains multiple choices. One of them being "Other:" If "Other" is selected from the drop box a text box/area should appear where more text can be added. This text box/area should ONLY be visible when "Other:" is chosen. Is this possible?
asked
2 answers
1

If your choices are from an enumeration: Create an extra row.Right click on that row. 'Edit condition for visible...' choose the enum value 'Other'.

Now that row is only visible if you choose 'Other' in the dropdown.

This is also possible with a boolean, that boolean should be something like 'ShowOtherTextBox'

answered
0

If the dropdown list is an enumeration it can. You can then show a table row based on the enumeration value.

answered