pgAdmin 4 commit: Add keyboard navigation in Query tool module viaTab/

Поиск
Список
Период
Сортировка
От Dave Page
Тема pgAdmin 4 commit: Add keyboard navigation in Query tool module viaTab/
Дата
Msg-id E1eegcf-00031n-Ca@gothos.postgresql.org
обсуждение исходный текст
Список pgadmin-hackers
Add keyboard navigation in Query tool module via Tab/Shift-Tab key. Fixes #2896

Note:
1) Once the keyboard shortcut infrastructure is ready we will add generic shortcut to focus out from CodeMirror editor
andset foucs to next element, Right now there is no way of doing this, For testing purpose you can manually focus out
fromCodeMirror and click on data output panel to continue navigate using Tab key. 
2) As of now inner panel's are not getting focused on Tab/Shift-Tab keys but once RM#2895 patch gets committed it will
startworking automatically as it's inherited code which will add tabindex tag automatically on each newly created
wcDockerpanel. 

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=97760d65c2a8a3d22c16cfe0098f1e81f35d7791
Author: Murtuza Zabuawala <murtuza.zabuawala@enterprisedb.com>

Modified Files
--------------
docs/en_US/keyboard_shortcuts.rst                  |  47 +++++---
web/pgadmin/misc/static/explain/js/explain.js      |   3 +
web/pgadmin/static/js/keyboard_shortcuts.js        |  62 +++++++++-
.../static/js/sqleditor/keyboard_shortcuts.js      |  81 -------------
.../jsx/history/detail/history_detail_query.jsx    |   3 +
web/pgadmin/tools/datagrid/static/js/datagrid.js   |   3 +-
.../tools/datagrid/templates/datagrid/filter.html  |   2 +-
.../tools/datagrid/templates/datagrid/index.html   | 130 ++++++++++-----------
.../tools/sqleditor/static/css/sqleditor.css       |   5 +
web/pgadmin/tools/sqleditor/static/js/sqleditor.js |  47 +++++---
.../sqleditor/keyboard_shortcuts_spec.js           |  44 +++----
11 files changed, 228 insertions(+), 199 deletions(-)


В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Harshal Dhumal
Дата:
Сообщение: Re: Module-wise Keyboard preferences
Следующее
От: Dave Page
Дата:
Сообщение: Re: [pgAdmin4][Patch#2896] Add support for Tab/Shift Tab navigationin Query tool