Conditionally disabling fields on an Extender form
I have an extender form where I want to disable fields based on a user selection of a numeric value from a drop down list. I am using a case statement to disable the fields based on selection but the disable field script is expecting a window name. How do I accomplish this?
Here is my case statement:
case
in [1]
disable field , , ;
end case;
Thanks,
Sean