I have three radio buttons, and I want to show a different drop down based on which one is clicked!
using this script in one of the buttons is called "Central Office" but it is not doing anything, can someone tell me why it does not work
if(event.value == "Central Office") {
this.getField("drop3").display = display.visible;
}
else {
this.getField("drop3").display = display.hidden;
}