0
Adding scripts?
New Here
,
/t5/acrobat-sdk-discussions/adding-scripts/td-p/10560922
Aug 18, 2019
Aug 18, 2019
Copy link to clipboard
Copied
I'm trying to figure out how to have one drop down menu's options affected by another drop down menu's options.
So for example Box A drop down has options 1, 2, 3, 4
If I choose option 1 I want box B drop down to have options Red and blue, but if I choose option 2 I want the box B drop down to have Green and yellow.
I cannot remember what options to choose if anything, and need help figuring out what properties I need to change, or how to edit the script.
TOPICS
Acrobat SDK and JavaScript
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
/t5/acrobat-sdk-discussions/adding-scripts/m-p/10560923#M80426
Aug 18, 2019
Aug 18, 2019
Copy link to clipboard
Copied
Look at the sample:
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more
Community Expert
,
LATEST
/t5/acrobat-sdk-discussions/adding-scripts/m-p/10560924#M80427
Aug 19, 2019
Aug 19, 2019
Copy link to clipboard
Copied
The basic code is quite simple. Use this as the custom validation script of the first drop-down field:
if (event.value=="1") this.getField("B").setItems(["Red", "Blue"]);
else if (event.value=="2") this.getField("B").setItems(["Green", "Yellow"]);
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
Learn more

