Making a field hidden or visible based on check box series
Hi,
How can I make a text field visible based on a check box selection ? I tried the following:
if (this.getField("MyCheckBox").isBoxChecked(0))
{this.getField("TextFormFieldToBeDisplayed").display = display.visible;}
else
{this.getField("TextFormFieldToBeDisplayed").display = display.hidden;}But my check box is apart of a series .. I have 2 check boxes all called "template"
and their export values are individual, and multiple.
I am trying to make 1 text box visible and another one hidden if individual is selected, then reversed if multiple is selected.
Thank you!
