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

How to Resume Tab Order when Spawning a Page

Community Beginner ,
Mar 15, 2024 Mar 15, 2024

I have a dropdown field that I am using to spawn a page at the end of the document.  When the page is spawned, instead of contining the tab order from the dropdown that spawned the page, it is going to the bottom of the document where the spawned page is.

 

Is there a way to resume the tab order from the dropdown instead of being forced down to the first field in the spawned page?

 

I am a coding dummy, so keep it simple if you can 🙂

 

Thank you!

TOPICS
How to , JavaScript , PDF , PDF forms
527
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
1 ACCEPTED SOLUTION
Community Expert ,
Mar 15, 2024 Mar 15, 2024

Yes. You can set the focus to a specific field, like this:

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

View solution in original post

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 ,
Mar 15, 2024 Mar 15, 2024

Yes. You can set the focus to a specific field, like this:

this.getField("FieldName").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
Community Beginner ,
Mar 18, 2024 Mar 18, 2024
LATEST

That works, thank you! 

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