Browse Source

Changed keyboard navigation method for VScrollTable to protected so one could implement a totally own keyboard navigation logic for the Table by extending the VScrollTable.

svn changeset:13080/svn branch:6.4
tags/6.7.0.beta1
John Alhroos 14 years ago
parent
commit
d2c772ae72
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java

+ 1
- 1
src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java View File

* @param event * @param event
* The keyboard event received * The keyboard event received
*/ */
private boolean handleNavigation(int keycode, boolean ctrl, boolean shift) {
protected boolean handleNavigation(int keycode, boolean ctrl, boolean shift) {
if (keycode == KeyCodes.KEY_TAB) { if (keycode == KeyCodes.KEY_TAB) {
// Do not handle tab key // Do not handle tab key
return false; return false;

Loading…
Cancel
Save