My new employee on-boarding form is complex. I have a summary box that contains checkboxes for a number of services. Simplified Example:
[ ] Email [ ] Billing System [ ] Medical Records System ...
If the user checks off one of the services in the summary box, I display a resource box specific to that service. If they uncheck the resource, then it hides the resource.
For example, if someone selected Billing System they would now see a resource
Billing Details
[ ] Insurance Module [ ] Scheduling module [ ] Receivables [ ] Payables ...
if a person checks the Billing System and then checks the details but then decides they don't want the billing system after all and they uncheck the summary item, it hides the resource, but I still have to programmatically clear or uncheck all the checkboxes for the now-hidden resource. If I don't, the box the resource is hidden, but the checkboxes are still checked.
Question: I can certainly uncheck the checkboxes one by one (again, programmatically), but is there a way to clear all the checkboxes with a more streamlined a method or function?
Thank you,
Adam