From ad096cda0475857e71451d4e3d660c11f9bc79b2 Mon Sep 17 00:00:00 2001 From: John Ahlroos Date: Mon, 12 Nov 2012 14:38:08 +0200 Subject: Fixed row focus not removed when selecting rows in Table #10036 Change-Id: Ie9089d7d35e8c3d27f93938141c0378816e4f48e --- client/src/com/vaadin/client/ui/table/VScrollTable.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client') diff --git a/client/src/com/vaadin/client/ui/table/VScrollTable.java b/client/src/com/vaadin/client/ui/table/VScrollTable.java index df44f58740..066c60a2ce 100644 --- a/client/src/com/vaadin/client/ui/table/VScrollTable.java +++ b/client/src/com/vaadin/client/ui/table/VScrollTable.java @@ -6503,7 +6503,7 @@ public class VScrollTable extends FlowPanel implements HasWidgets, // Remove previous selection if (focusedRow != null && focusedRow != row) { - focusedRow.removeStyleName(getStylePrimaryName()); + focusedRow.removeStyleName(getStylePrimaryName() + "-focus"); } if (row != null) { -- cgit v1.2.3