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

How to make the word appear / disappear automatically?

New Here ,
Jul 22, 2018 Jul 22, 2018

Initially, there are three text field.

If I input any word or number in field A, for example

Finally, the word " - " will be automatically appeared in field B without any input.

Similarly, If data in Field A is deleted, the word "-" will be removed automatically.

How to make the relevant code in fillable PDF? Thank you very much!

TOPICS
Acrobat SDK and JavaScript
560
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 ,
Jul 22, 2018 Jul 22, 2018

As the custom validation script of field A enter this code:

this.getField("B").value = (event.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 ,
Jul 22, 2018 Jul 22, 2018

Thank you for your reply.

Do I need to add the code below?

if.....else

event.rc = false

event.value=""

Thank you very much

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 ,
Jul 23, 2018 Jul 23, 2018
LATEST

No. Use the code I provided.

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