diff options
author | Artur Signell <artur@vaadin.com> | 2014-12-01 21:14:18 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2014-12-04 11:36:18 +0000 |
commit | c00921a2ff94915a425569a60c7651e702b3d2c6 (patch) | |
tree | a11da6ec5738ece6a981a194769c34f0368cb932 /shared | |
parent | d3cfb79c223a772d3baec8476a9d15716bade1ff (diff) | |
download | vaadin-framework-c00921a2ff94915a425569a60c7651e702b3d2c6.tar.gz vaadin-framework-c00921a2ff94915a425569a60c7651e702b3d2c6.zip |
Allow setting style name for header/footer rows (#7225)
Change-Id: I798e26b0a734c3c460b4e458d04332c7a3b599fc
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/GridStaticSectionState.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridStaticSectionState.java b/shared/src/com/vaadin/shared/ui/grid/GridStaticSectionState.java index 39d84510f6..88539913d1 100644 --- a/shared/src/com/vaadin/shared/ui/grid/GridStaticSectionState.java +++ b/shared/src/com/vaadin/shared/ui/grid/GridStaticSectionState.java @@ -55,6 +55,11 @@ public class GridStaticSectionState implements Serializable { * Map from column id set to cell state for merged state. */ public Map<Set<String>, CellState> cellGroups = new HashMap<Set<String>, CellState>(); + + /** + * The style name for the row. Null if none. + */ + public String styleName = null; } public List<RowState> rows = new ArrayList<RowState>(); |