Copy link to clipboard
Copied
I'm new on creating pdf forms and JAva scripting.
How can I use the different items in a dropdown menu to get it in a different text field?
dropdown list = item 1; item 2; item 3
When item 1 is selected , text item 1 should appear in an other textfield as well.
How can I do this?
regards
F
As the custom calculation script of the text field enter:
event.value = this.getField("dropdown").value;
Copy link to clipboard
Copied
As the custom calculation script of the text field enter:
event.value = this.getField("dropdown").value;
Copy link to clipboard
Copied
This worked perfectly. Another thing learned today! thanks.