Copy link to clipboard
Copied
I thought I did this before but not sure. When you check a checkbox, I want a dropdown to populate with a specific choice
Copy link to clipboard
Copied
As the Mouse Up event of the check-box you can use this code to do it:
if (event.target.value!="Off") this.getField("Dropdown1").value = "Some value";
Copy link to clipboard
Copied
As the Mouse Up event of the check-box you can use this code to do it:
if (event.target.value!="Off") this.getField("Dropdown1").value = "Some value";