Skip to main content
Participating Frequently
March 15, 2024
Answered

How to Resume Tab Order when Spawning a Page

  • March 15, 2024
  • 1 reply
  • 660 views

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!

This topic has been closed for replies.
Correct answer try67

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

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

1 reply

try67
Community Expert
try67Community ExpertCorrect answer
Community Expert
March 15, 2024

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

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

Participating Frequently
March 18, 2024

That works, thank you!