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

Tabs

New Here ,
May 03, 2016 May 03, 2016

How do I set my tabs in a fillable pdf form to skip some text fields? I don't want my tab to stop at every text field.

TOPICS
Acrobat SDK and JavaScript , Windows
315
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

correct answers 1 Correct answer

Community Expert , May 03, 2016 May 03, 2016

You can't exclude fields from the tab order (unless you set them as hidden or read-only).

The only way you can do something like that is if you use a script to automatically change the focus to the next field in the list when the field loses focus. You can use something like this as the On Blur script of the last field on the page:

this.getField("Name of next field").setFocus();

Translate
Community Expert ,
May 03, 2016 May 03, 2016
LATEST

You can't exclude fields from the tab order (unless you set them as hidden or read-only).

The only way you can do something like that is if you use a script to automatically change the focus to the next field in the list when the field loses focus. You can use something like this as the On Blur script of the last field on the page:

this.getField("Name of next field").setFocus();

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