- Mark as New
- Follow
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report
Okay gang, I finally got this working.
They key was to not try and do this in Acrobat, but do this in LiveCycle designer. I had assumed that LiveCyle was a separate product and didn't realize it installed with my Acrobat Pro license. It was much easier to get working with many more options vs Acrobat X.
Good luck
Here is the final code I used. This was added on the "change" event within the properties of my first DDList within LiveCycle Designer.
Description.rawValue = "";
Description.clearItems();
var sNewSel = this.boundItem(xfa.event.newText);
switch (sNewSel)
{
case "Assay 1":
Description.addItem("Assay 1: Description 1")
Description.addItem("Assay 1: Description 2")
Description.addItem("Assay 1: Description 3")
Description.addItem("Assay 1: Description 4")
break;
case "Assay 2":
Description.addItem("Assay 2: Description 1")
Description.addItem("Assay 2: Description 2")
Description.addItem("Assay 2: Description 3")
Description.addItem("Assay 2: Description 4")
break;
case "Assay 3":
Description.addItem("Assay 3: Description 1")
Description.addItem("Assay 3: Description 2")
Description.addItem("Assay 3: Description 3")
Description.addItem("Assay 3: Description 4")
break;
default:
break;
}
Views
Replies
Total Likes