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

Adobe Fillable forms - check boxes and skipping fields

New Here ,
Jan 23, 2021 Jan 23, 2021

Copy link to clipboard

Copied

I am creating fillable applications for work. There are differect sections where some of the answers may be the same such as addresses: mailing and billing address maybe the same. I would like to setup a box that if checked will skip that fillable section and automatically move the individual to the next section to be completed. Does anyone know how I can create this in an Adobe Acrobat Pro DC fillable form?

Thanks, Kaye

 

Moved from Using the Community (which is about the forums) to the correct forum... Mod
To find a forum for your program please start at https://community.adobe.com/

TOPICS
Create PDFs , How to

Views

1.4K

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

correct answers 2 Correct answers

Community Expert , Jan 24, 2021 Jan 24, 2021

You can set the check-box to make those fields read-only. They will then be skipped in the tab order.

To do that use the following as the Mouse Up event of the check-box:

this.getField("Field1").readonly = (event.target.value!="Off");

this.getField("Field2").readonly = (event.target.value!="Off");

this.getField("Field3").readonly = (event.target.value!="Off");

Adjust the field names in the code above to match the actual ones in your file, of course.

Votes

Translate

Translate
Community Expert , Jan 25, 2021 Jan 25, 2021

Yes.

Votes

Translate

Translate
Community Expert ,
Jan 24, 2021 Jan 24, 2021

Copy link to clipboard

Copied

You can set the check-box to make those fields read-only. They will then be skipped in the tab order.

To do that use the following as the Mouse Up event of the check-box:

this.getField("Field1").readonly = (event.target.value!="Off");

this.getField("Field2").readonly = (event.target.value!="Off");

this.getField("Field3").readonly = (event.target.value!="Off");

Adjust the field names in the code above to match the actual ones in your file, of course.

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 ,
Jan 24, 2021 Jan 24, 2021

Copy link to clipboard

Copied

try67 - if they check the box on accident, then realize their mistake an duncheck the box, will the fields reappear?

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 ,
Jan 25, 2021 Jan 25, 2021

Copy link to clipboard

Copied

Yes.

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 ,
Jan 25, 2021 Jan 25, 2021

Copy link to clipboard

Copied

try67,

I have tried typing in the fields that you suggested, but I can't get the Mouse Up section to allow me to type in the information you provided.  Would you mind providing me with step by step instructions? Or can you email me the instructions?

[Email address removed by moderator]

 

Thank you again for your help,

Kaye

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 ,
Jan 26, 2021 Jan 26, 2021

Copy link to clipboard

Copied

LATEST

try67,

I figured it out! and it works!!!!

Thank you so much!

Kaye

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