From: John Alhroos Date: Fri, 7 May 2010 07:00:07 +0000 (+0000) Subject: Changed keyboard navigation method for VScrollTable to protected so one could impleme... X-Git-Tag: 6.7.0.beta1~1685 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=d2c772ae72962471145a7c16ff13191787cc54b0;p=vaadin-framework.git 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 --- diff --git a/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java b/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java index c445aad43c..e470288d1e 100644 --- a/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java +++ b/src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java @@ -4689,7 +4689,7 @@ public class VScrollTable extends FlowPanel implements Table, ScrollHandler, * @param event * 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) { // Do not handle tab key return false;