text fields
hi,
i have a form with 3 text fields.
i want to go to the next field if the current field if empty.
i used the following code and it works but, when the focus is set to the next field and the field is not empty the text in the next field is marked.
if the text is marked and the user type a letter the text in the field gets deleted.
how can i prevent that?
if ( event.fieldFull || event.willCommit ) this.getField("NextTabField").setFocus();
