fill in multiple fields based on check box
(another newb questions...)
Like to fill in several form fields based on whether or not a checkbox is checked.
I have it working now using individual calculated scripts in the individual field. for example:
if (this.getField("checkbox").value=="Off") {
event.value = null;
} else {
event.value = "ABCXYZ";
}
However, it is possible to assign the value(s) just from the CheckBox field itself?
