From: Teemu Suo-Anttila Date: Tue, 16 Sep 2014 12:24:15 +0000 (+0300) Subject: Fix Grid active cell navigation with colspans (#13334) X-Git-Tag: 7.4.0.beta1~9^2~189^2~7 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b17ec1ca3f6bebc51fe206e01b4331730d23dc0d;p=vaadin-framework.git Fix Grid active cell navigation with colspans (#13334) Change-Id: Iafcb82c86d9c4772d9488b80bd888f06b142951b --- diff --git a/client/src/com/vaadin/client/ui/grid/Grid.java b/client/src/com/vaadin/client/ui/grid/Grid.java index b0f97413ff..636fa78ea7 100644 --- a/client/src/com/vaadin/client/ui/grid/Grid.java +++ b/client/src/com/vaadin/client/ui/grid/Grid.java @@ -406,7 +406,7 @@ public class Grid extends Composite implements if (activeCellRange.getEnd() >= getVisibleColumns().size()) { return; } - ++newColumn; + newColumn = activeCellRange.getEnd(); break; case KeyCodes.KEY_LEFT: if (newColumn == 0) {