I have a form I am working on where I have a drop down list and a radio button selection where the last option is "Other". I am wondering how I can code the selection of Other to pop up a edit field where the description can be entered.
Any ideas would be great!!
You can put in a disable phrase.
If the first field with the "Other" as a selection is DOCUMENT.STUFF and the field where "Other" is to be documented is DOCUMENT.OTHERSTUFF.
Double-click the DOCUMENT.OTHERSTUFF field and you will see 3 tabs. Options, Translation and Advanced.
On the Advanced tab, the field at the very bottom, you could check the "Use enable expression" and put:
{if DOCUMENT.STUFF == "Other" then TRUE else FALSE endif}
in the field.
Or you can use a visibility region.
Create a new visibility region with {if DOCUMENT.STUFF == "Other" then TRUE else FALSE endif} as the argument.
Put the DOCUMENT.STUFF field into the visibility region.
In either case, the Other field will enable or appear if the selection in DOCUMENT.STUFF is "Other".
