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

How to make the word appear / disappear automatically?

New Here ,
Jul 22, 2018 Jul 22, 2018

Copy link to clipboard

Copied

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

Views

326

Translate

Translate

Report

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

Copy link to clipboard

Copied

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

this.getField("B").value = (event.value=="") ? "" : "-";

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

Thank you for your reply.

Do I need to add the code below?

if.....else

event.rc = false

event.value=""

Thank you very much

Votes

Translate

Translate

Report

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

Copy link to clipboard

Copied

LATEST

No. Use the code I provided.

Votes

Translate

Translate

Report

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