summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2014-12-05 19:38:55 +0200
committerLeif Åstrand <leif@vaadin.com>2014-12-05 19:38:55 +0200
commitb1d1e274e74746ee91b835e89fec3017585fd125 (patch)
tree5e04305c00bbd57d54daedbc2f12f46c534a8f73 /shared
parentb5b4df245f9173ec87991d678b9d13734d7637a3 (diff)
downloadvaadin-framework-b1d1e274e74746ee91b835e89fec3017585fd125.tar.gz
vaadin-framework-b1d1e274e74746ee91b835e89fec3017585fd125.zip
Refactor frozen column API (#13334)
Change-Id: I0c9528d2a4b2de2bcd5a6a6e70b1821eb142c4cc
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/grid/GridState.java9
1 files changed, 3 insertions, 6 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridState.java b/shared/src/com/vaadin/shared/ui/grid/GridState.java
index 621b34a2b4..c30ebae474 100644
--- a/shared/src/com/vaadin/shared/ui/grid/GridState.java
+++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java
@@ -115,12 +115,9 @@ public class GridState extends AbstractComponentState {
public GridStaticSectionState footer = new GridStaticSectionState();
- /**
- * The id for the last frozen column.
- *
- * @see GridColumnState#id
- */
- public String lastFrozenColumnId = null;
+ /** The number of frozen columns */
+ @DelegateToWidget
+ public int frozenColumnCount = 0;
/** The height of the Grid in terms of body rows. */
@DelegateToWidget