Hi,
please look at this code and the behavior which I demonstrate on the screencast below:
Screencast:
http://www.youtube.com/watch?v=rdWef49x7nA
What I do:
1. Type in the first name + last name
2. Clear both fields -> validator marks the fields as incorrect
3. Try to type in the first name again -> after typing the first letter, my focus switch automatically to the second name!?
Could you check this please?
Cheers
please look at this code and the behavior which I demonstrate on the screencast below:
Code:
isc.DynamicForm.create({
ID: "testForm",
fields: [
{name: "First name", required: true, validateOnChange:true},
{name: "Last Name", required: true, validateOnChange:true}
]
});
http://www.youtube.com/watch?v=rdWef49x7nA
What I do:
1. Type in the first name + last name
2. Clear both fields -> validator marks the fields as incorrect
3. Try to type in the first name again -> after typing the first letter, my focus switch automatically to the second name!?
Could you check this please?
Cheers
Comment