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

Reset Form button but not included in Tab Order

New Here ,
Sep 19, 2022 Sep 19, 2022

Copy link to clipboard

Copied

I have a form with a "Reset Form" button at the top, but I do not want to include that field in the tab order. If you set the Reset Form field to "Read Only" it removes it from the tab order, but it also removes the action of actually resetting the form. How does one do this...doesn't seem like it should be this difficult. BTW, my Reset form action is on Mouse Up.

TOPICS
PDF forms

Views

130

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 ,
Sep 19, 2022 Sep 19, 2022

Copy link to clipboard

Copied

LATEST

The only way to do something like that is with a script. As the field's On Focus event enter the following:

this.getField("NextField").setFocus();

Replace "NextField" with the actual name of the next field in the tab order, 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