Expand my Community achievements bar.

Cancel or remove tab stops in Designer

Avatar

Level 2
Hi,

I have created a two page form and set the tab order I want. Some of the fields I still want to be fillable but don't want them to be a tab stop.

How do I past over a fillable field using the tab.

Frank
1 Reply

Avatar

Former Community Member
Frank,



One way is to put a JavaScript in the enter event of the field that shifts focus to the next field. For example, if you have Field1, Field2, and Field3 and you want to skip Field2, then in the enter event of Field2 you would put this code:



xfa.host.setFocus(xfa.resolveNode("Field3"));



HTH,

Kathryn