mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed tab key navigation for some dialogs. Fixes #5371
This commit is contained in:
committed by
Akshay Joshi
parent
21cb1a0166
commit
a05acb4f99
@@ -833,6 +833,12 @@ define([
|
||||
// go to Next Cell & if Shift is also pressed go to Previous Cell
|
||||
if (e.keyCode == 9 || e.keyCode == 16) {
|
||||
gotoCell = e.shiftKey ? self.$el.prev() : self.$el.next();
|
||||
if (self.$el.next().length == 0){
|
||||
setTimeout(function() {
|
||||
self.$el.find('.select2-selection').blur();
|
||||
}, 100);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
if (gotoCell) {
|
||||
|
||||
Reference in New Issue
Block a user