Community
Participate
Working Groups
In JFace, it's possible to control the tabbing behavior of the cell editors. There is a feature to turn on TABBING_VERTICAL. It relies on the following key combination: - CTRL+TAB - move the focus to the cell below - CTRL+SHIFT+TAB - move the focus to the cell above. In IE and WebKit there is no event send from the client if these combinations are pressed. Pressing the CTRL sends an event with keyCode = 17 and mask = ctrl. Pressing TAB afterwards, without releasing the CTRL do nothing. Working fine in Firefox - event is sent with keyCode = 9 and mask = ctrl. Reproducible with Control Demo -> TableViewerTab with activated cell editors. Activate the cell editor on the first column and press CTRL+TAB on it.
As CTRL+TAB and all variants of it are not possible to support on any browser (firefox switches browser-tabs), we agreed to suppress this key sequence in general.
Fixed in CVS HEAD.