Deny tab in the field

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

+4
source share
2 answers

If the field has the value tabindex -1, it will be skipped when moving from field to field.

+7
source

hm Jacob is right because I don’t know how to install it atm in ExtJs, I would go in a more complicated way, something like

combobox.on('focus', function(){ var nextField = combo.nextSibling(); nextField.focus(); }); 
0
source

Source: https://habr.com/ru/post/1304584/


All Articles