Checking Checkbox when I am clicking button All
Good Day.
I am trying to create a adobe form where if I click on the button All Days all checkbox for days will be check.
I when in the properties of All Days under the tab Actions and try to add an action Run a JavaScript
the field name is Check 1 and so on until Check 31
var a1 = this.getField("Check 1");
var a2 = this.getField("Check 2");
a1.value = "On";
a2.value = "Off";






