Copy link to clipboard
Copied
If I select a checkbox, I want it to make a dropdown field required.
Use this code as the check-box's Mouse Up script (adjust the name of the field in the code to match the actual field name in your file):
this.getField("Dropdown1").required = (event.target.value!="Off");
Copy link to clipboard
Copied
Use this code as the check-box's Mouse Up script (adjust the name of the field in the code to match the actual field name in your file):
this.getField("Dropdown1").required = (event.target.value!="Off");