Skip to main content
Participant
October 19, 2006
Answered

Jumping to certain text fields

  • October 19, 2006
  • 2 replies
  • 281 views
I would like to have the curser jumping to a certain new text field when user has filled out another text field. Let’s say I have 5 text fields. When user have filled out TextField1 and push the tap key the curser should jump to TextField3. How do I make that happen?
This topic has been closed for replies.
Correct answer ___x-_V_P_-x___
one_txt.tabIndex = 1;
two_txt.tabIndex = 2;
three_txt.tabIndex = 3;
four_txt.tabIndex = 4;

2 replies

Snej45Author
Participant
October 19, 2006
Perfect
Thanks
___x-_V_P_-x___Correct answer
Participating Frequently
October 19, 2006
one_txt.tabIndex = 1;
two_txt.tabIndex = 2;
three_txt.tabIndex = 3;
four_txt.tabIndex = 4;