Copy link to clipboard
Copied
Hello! I'm trying to make a form that allows for several students to be entered with a dropdown course exam list for each student entered. I've created checkboxes for Exam Type: Retest and Recertify. I want to create a required Date field for Date of Original Exam ONLY IF the Retest checkbox is chosen. Each section will also have a required Proposed Exam Date field. Can anyone help me with this?
Copy link to clipboard
Copied
In the mouse up action of the Restest check box, enter the following script:
if(event.target.value!="Off")
{this.getField("Retest Date").required = true}
else
{this.getField("Retest Date").required = false}
Copy link to clipboard
Copied
In the mouse up action of the Restest check box, enter the following script:
if(event.target.value!="Off")
{this.getField("Retest Date").required = true}
else
{this.getField("Retest Date").required = false}
Copy link to clipboard
Copied
Thank you!