Copy link to clipboard
Copied
in above picture there are 5 categories.
i want each category as a separate group.
user can check all boxes in category. but he can choose any 1 category only.
if he select category 1 then he can check all 3 check boxes from that category.
if he checked category 2.. then category 1 will be unselected or unchecked.
help me..
Copy link to clipboard
Copied
As the MouseUp event of the "category 1" fields, for example, you can enter this code:
if (event.target.value!="Off") this.resetForm(["category 2", "category 3"]);
Copy link to clipboard
Copied
As the MouseUp event of the "category 1" fields, for example, you can enter this code:
if (event.target.value!="Off") this.resetForm(["category 2", "category 3"]);
Copy link to clipboard
Copied
See, checkboxes ![]()
Find more inspiration, events, and resources on the new Adobe Community
Explore Now