Answered
Hide Field when selection of drop down
I am currently working on an account form.
I have one drop down called Options with selections "Add" , "Transfer", and "Existing".
I have two separate text fields "Add" and "Transfer".
For the "Add" selection, I want "Add" field to show only.
for the "Transfer" selection, I only want "Transfer" to show.
I used script for Transfer field and it works.
if(this.getField("Dropdown3").value == "Add Funds"){
event.target.display = display.visible;
}
else{
event.target.display = display.hidden;
}
I tried to the same script with the add field, but both fields remain hidden when I select "Add" in the drop down. Please help.
