Skip to main content
Participating Frequently
November 11, 2022
質問

I need to tab into an autofill field but skip fields in between

  • November 11, 2022
  • 返信数 2.
  • 499 ビュー

I have a form with several text fields that use the same name in order to autofill, i need to be able to set the tab order to skip fields and go directly into those fields. I have tried using the following code, but it doesn't work I'm assuming because there is more than one field with the same name. Is there a way to do this? this.getField("FieldName").setFocus();

このトピックへの返信は締め切られました。

返信数 2

try67
Community Expert
Community Expert
November 11, 2022

Set fields as read-only to exclude them from the tab order.

Or you can adjust your code like this:

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

Or:

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

etc.

Each index number corresponds with one field in the group.

Sherrie5C54作成者
Participating Frequently
November 11, 2022

Perfect!  And now I see what was keeping it from working, I needed to use ".1" and so on.  

thank you for the help!