How can I prevent a user from tabbing into a field (comboxbox)?
+3
A:
If a field has a tabindex value of -1, it will be skipped when tabbing from field to field.
JacobM
2010-03-19 16:14:21
Thanks for the quick answer.
Upper Stage
2010-03-19 16:27:04
A:
hm Jacob is right, because i dont know how to set it atm in ExtJs i would go a more complicated way, something like
combobox.on('focus', function(){
var nextField = combo.nextSibling();
nextField.focus();
});
Nexum
2010-03-19 16:18:16