Expand my Community achievements bar.

Passing Parameters to other forms

Avatar

Former Community Member
I am new to LifeCycle Designer ES and especially to JavaScript. I have a form obtaining customer information. I defined the "State of Application" (Drop Down List) list as a global bind. According to this value different paragraphs need to be populated in multiple forms at a later time. My code is not working, can somebody help me with the correct syntax to validate the expression?

if (AppSateSign == "California")

{

ListWrapper.List_All.presence = "hidden";

ListWrapper.List_CA.presence = "visible";

}

else

{

ListWrapper.List_All.presence = "visible";

ListWrapper.List_CA.presence = "hidden";

}



Thanks,
0 Replies