diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2014-12-16 14:04:04 +0200 |
---|---|---|
committer | Johannes Dahlström <johannesd@vaadin.com> | 2014-12-16 14:04:04 +0200 |
commit | 8fbd9973b76d92391ac5185c95d34455a08e8202 (patch) | |
tree | f96b0bfc7335ec4819b549fa8f06e5bad4a01dba /client | |
parent | 5adb3a54059d7f43b8a49bce5627ee8d2c825867 (diff) | |
download | vaadin-framework-8fbd9973b76d92391ac5185c95d34455a08e8202.tar.gz vaadin-framework-8fbd9973b76d92391ac5185c95d34455a08e8202.zip |
Remove unused "header-active" classname and style (#13334)
Change-Id: I11de89a69161d9b355d0de63b8a61470259b518e
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/widgets/Grid.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/client/src/com/vaadin/client/widgets/Grid.java b/client/src/com/vaadin/client/widgets/Grid.java index bbdaec8994..af9c04a773 100644 --- a/client/src/com/vaadin/client/widgets/Grid.java +++ b/client/src/com/vaadin/client/widgets/Grid.java @@ -1483,13 +1483,6 @@ public class Grid<T> extends ResizeComposite implements cellWithFocusStyle = null; } } - - if (cellContainer == escalator.getHeader() - || cellContainer == escalator.getFooter()) { - // Correct header and footer column also needs highlighting - setStyleName(cell.getElement(), headerFooterFocusStyleName, - columnHasFocus); - } } /** @@ -2399,7 +2392,6 @@ public class Grid<T> extends ResizeComposite implements private String rowSelectedStyleName; private String cellFocusStyleName; private String rowFocusStyleName; - private String headerFooterFocusStyleName; /** * Current selection model. @@ -3435,7 +3427,6 @@ public class Grid<T> extends ResizeComposite implements * merged. */ cellFocusStyleName = getStylePrimaryName() + "-cell-active"; - headerFooterFocusStyleName = getStylePrimaryName() + "-header-active"; rowFocusStyleName = getStylePrimaryName() + "-row-active"; if (isAttached()) { |