Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
13

Add selected text from dropdownmenu also in other text field

New Here ,
Nov 14, 2023 Nov 14, 2023

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

TOPICS
PDF forms
572
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
1 ACCEPTED SOLUTION
Community Expert ,
Nov 14, 2023 Nov 14, 2023

As the custom calculation script of the text field enter:

event.value = this.getField("dropdown").value;

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 14, 2023 Nov 14, 2023

As the custom calculation script of the text field enter:

event.value = this.getField("dropdown").value;

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 14, 2023 Nov 14, 2023
LATEST

This worked perfectly. Another thing learned today! thanks.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines