Is it possible for 1 check box to check other check boxes?
Lets I have these check boxes under a selection header: A, B, C, D and "Select All". When user check "Select All", it should also check A, B, C and D. Is it possible? Thanks in advance!
Lets I have these check boxes under a selection header: A, B, C, D and "Select All". When user check "Select All", it should also check A, B, C and D. Is it possible? Thanks in advance!
As the Mouse Up event of the "Select All" field enter something like this:
this.getField("A").checkThisBox(0, event.target.isBoxChecked(0));
this.getField("B").checkThisBox(0, event.target.isBoxChecked(0));
this.getField("C").checkThisBox(0, event.target.isBoxChecked(0));
this.getField("D").checkThisBox(0, event.target.isBoxChecked(0));
etc.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.