Question
How to add item to drop-down list using javascript?
I added button to my pdf and when I clicked to button, it added a textarea dynamically.
So I want to keep these names on drop-down list but I cannot add item dynamically to drop-down in javascript.
I wrote like this;
this.getField("list").setItems(["CustomItem" + count]);but this code added only one item.
