Importing a list of items into multiple drop down box fields with different names
Hi,
I am trying to shorten the script below which allows me to import the same list of items into multiple drop down box fields. I would like to be able to list the fields in a row using a single command instead of executing the complete command for each field. The script does work but I would like to streamline as it populates a large number of fields.
var aOptions = [
"One",
"Two",
"Three"
];
this.getField("Parts 1").setItems(aOptions);this.getField("Parts 2").setItems(aOptions);this.getField("Parts 3").setItems(aOptions);
