Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session
SOLVED

Remove element from tab order

Avatar

Level 2

Im just wondering if I can remove an item from the tab order as its putting a tab number on the actual TEXT box which I dont want or need.

1 Accepted Solution

Avatar

Correct answer by
Level 10

If you mark the field as protected tabbing will skip over it but that also means that the field can't be used for entering data.

View solution in original post

8 Replies

Avatar

Level 10

Every object gets a tab number but only fields get tabbed to. Have you tried testing the form? Tabbing should skip the text box.

Avatar

Level 2

Ah okay. Could I remove a field from the tab order completely?

Avatar

Correct answer by
Level 10

If you mark the field as protected tabbing will skip over it but that also means that the field can't be used for entering data.

Avatar

Level 2

I heard about that. I'll have to make do. Thanks for the help!

Avatar

Level 10

You can also script this property if you need to turn it on and off:

fieldName.access = "protected";

The options are:

open

protected

readOnly

nonInteractive

Avatar

Level 3

Hi Jono -

Can you remove the tabs from a calculated field?

I have the Premium being calculated once the Amount is entered so I don't want the curser to stop on the Premium fields.

Possible?

adobe1.jpg

Avatar

Level 10

Yeah same thing, set the field as protected.