Hi all,
I am new to acrobat livecycle designer .I don't know how to display the text boxes with the selection of an item in a drop down list.please help me.
Thanks,
Surekha.
Hi all,
I am new to acrobat livecycle designer .I don't know how to display the text boxes with the selection of an item in a drop down list.please help me.
Thanks,
Surekha.
Put a script like this into the exit or change event of your dropdown field.
if (Form1.Page1.DropdownField.rawValue=="ABC")
{
Form1.Page1.Text1.presence = "hidden";
Form1.Page1.Text2.presence = "visible";
}
if (Form1.Page1.DropdownField.rawValue=="DEF")
{
Form1.Page1.Text1.presence = "visible";
Form1.Page1.Text2.presence = "hidden";
}
...
radzmar
• LoveCycle Blog
Documents you need:
• LiveCycle Designer ES2 Docs