4

How can I prevent a user from tabbing into a field (comboxbox)?

Justin Johnson
  • 30,978
  • 7
  • 65
  • 89
Upperstage
  • 3,747
  • 8
  • 44
  • 67

2 Answers2

7

If a field has a tabindex value of -1, it will be skipped when tabbing from field to field.

Jacob Mattison
  • 50,258
  • 9
  • 107
  • 126
0

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
  • 387
  • 1
  • 9