Multiple Field Validation to Turn On Checkbox
I'm using a simple javascript to validate a field, and turn on a checkbox based on the value of the field. However, I'd like the validation to loop or cycle through multiple fields prior to turn on the checkbox. Here's what I have:
this.getField("Check Box3").checkThisBox(0, (event.value=="0"));
this.getField("Check Box4").checkThisBox(0, (event.value>="1"));
