Answered
Toggle checkbox with a button
My checkbox name is "Check Box1" is it possible to toggle its state with a button click?
My checkbox name is "Check Box1" is it possible to toggle its state with a button click?
Yes, it's possible using script, place this script in button under "Action" as 'Mouse UP':
var f = this.getField("Check Box1");
f.checkThisBox(0, !f.isBoxChecked(0));
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.