Enabling a disabled checkbox after using a 'Reset' button.
Hi, I need help with either the Reset button or the checkboxes.
I have 4 checkboxes set to where if Not Approved is selected, checkboxes: A,B,C are unchecked and disabled.

using a similar script like below:
this.getField("A").readonly = true; this.resetForm(["A"]);
this.getField("B").readonly = true; this.resetForm(["B"]);
this.getField("C").readonly = true; this.resetForm(["C"]);
However when using a Reset button to clear the form, the A,B,C checkboxes remain disabled when Not Approved is unchecked. Is there a Javascript to allow the 'reset' to take place and enabling A,B,C again?
Thank you.
