I am using a series of check boxes on a site. When the user clicks a clear button the form input is wiped out. Ok simple enough. On the send button also I have done this so that when the info is sent the form is effectively reset.
The problem is that my method of resetting the checkboxes does clear the little tick from each and any box but the values of them remain.
I know this having tested the form…
If I fill it out once and select say two options and then send or clear and make no selections the second time in the emails received the values from the first attempt appear in the second email as well, suggesting that the tick is being cleraed but the value of the variable is not.
I believe I am using:
[COLOR=orangered]CHECKBOXINSTANCE.setValue(false);[/COLOR]
Any ideas??