SRenae
17-09-2009
I'm working on a form. What I need it to do is this:
The end user will check a box to add comments. The comments field is NOT visable until the check box is checked. Once the checkbox is checked then a text box will appear directly underneath it.
Thank you in advance!
xrum
if (myCheckbox.rawValue == 1)
myTextbox.presence="visible"
else
myTextbox.presence="hidden"