I've created a DDL where if one of the values is chosen, I want a hidden subform to be visible.
I put the following script on the change event of the DDL, but it's not working. I've make the subforms flowed and the form is dynamic.
I've gotten script like this to work before, but I don't know what I've done wrong on this one.
if
(this.rawValue == '4')
{
awaReq.positioned4.presence = "visible";
}
else
{
awaReq.positioned4.presence
= "hidden";}
Thanks,
MDAwn