how to add item and value to dropdown list
i make a secuired pdf file and want to let the company to add the pilot names as (values) and their IDs as (items) in the dropdown list, without reaching to my script.
i use this script:
function PopulateCabinCrewCode()
{ for (var i=10; i<20; i++) { this.getField("code" + i).setItems([
["", ""],
["41", "I.Amer "],
["46", "M.Mokhtar"]
]); } }
thanks in advance.
