Browse Source

left/right up now clears nav key down flag. Fixes an issue in TreeTable, possibly in normal Table too in some cases.

svn changeset:15067/svn branch:6.4
tags/6.7.0.beta1
Matti Tahvonen 13 years ago
parent
commit
7614a7f320
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java

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

@@ -5489,6 +5489,8 @@ public class VScrollTable extends FlowPanel implements Table, ScrollHandler,
*/
private boolean isNavigationKey(int keyCode) {
return keyCode == getNavigationUpKey()
|| keyCode == getNavigationLeftKey()
|| keyCode == getNavigationRightKey()
|| keyCode == getNavigationDownKey()
|| keyCode == getNavigationPageUpKey()
|| keyCode == getNavigationPageDownKey()

Loading…
Cancel
Save