Hi to all,
I've got two questions :
This form has a checkbox with default rawValue 0 and a text in subform 1
When the checkbox is clicked on, a numeric field opens and the text form subform 1 changes into the text form subform 2
Here's the java syntax
if(this.rawValue == 0)
Lidnummer.presence = "hidden";
else
Lidnummer.presence = "visible";
AVGeenLid.presence = "hidden";
AVLid.presence = "visible";
Now what I want is when the user changes his mind but has already clicked on the checkbox so the numeric field (Lidnummer)has appeared and subform 1 (AVGeenLid) has changed into subform 2 (AVLid)
unchecks the checkbox(LidBTSC)
the numeric field becomes back hidden and the subform2 (AVLid) gets back hidden and subform1 (AVGeenLid) appears again.
Furthermore,
I have placed an agreementcheckbox under this subforms, which I want to link to my emailsubmit-button.
So, when this checkbox isn't checked, users cannot send the form.
Who can and will help me with this problems.
Thanks in advance!
Francis
if(this.rawValue == 0)
Lidnummer.presence = "hidden";
AVGeenLid.presence = "visible";
AVLid.presence = "hidden";
else
Lidnummer.presence = "visible";
AVGeenLid.presence = "hidden";
AVLid.presence = "visible";
Someone else will have to help you with your other question.