Tabbing issue

I have a set of six fields on a form, each with a onFocusLost method attached. At the end of each method I’ve placed a requestFocus for the next field in the sequence. I’m finding the focus actually jumps from the first in the sequence directly to the last.

Is there a way for tabbing to jump to the next and stay there?

have you tried setting the tabSeq property of the field?

automazione:
have you tried setting the tabSeq property of the field?

That was the first thing I tried, even before playing around with the onFocusLost methods.

why are you doing a requestFocus in a onFocusLost of one field?
Where does the focus go to if you don’t do requestFocus?

setting the tab sequence should do the trick for you.

Problem resolved.

Switched the onFocusLost methods to onFocusGained. Added RequestFocus for the current field at the end of the method.

Tabbing now works like a charm.

Thanks.