浏览代码

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 年前
父节点
当前提交
d2c772ae72
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java

+ 1
- 1
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;

正在加载...
取消
保存