aboutsummaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2014-12-12 01:14:46 +0200
committerTeemu Suo-Anttila <teemusa@vaadin.com>2014-12-12 14:41:58 +0000
commitc9fe985fc34788d197417715d8d439c2ce0bc26b (patch)
tree65ef10961e662299b89443fc78fd2676f70fdab2 /shared
parent643ccd9e6a9ca6bb1d4960aa1642fa790edc9ac1 (diff)
downloadvaadin-framework-c9fe985fc34788d197417715d8d439c2ce0bc26b.tar.gz
vaadin-framework-c9fe985fc34788d197417715d8d439c2ce0bc26b.zip
Split CellStyleGenerator into separate cell and row style generators
(#13334) Change-Id: If07018b6f74ff1a4c616705f61b6118647d64342
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/grid/GridState.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridState.java b/shared/src/com/vaadin/shared/ui/grid/GridState.java
index aae4005d7f..f26b5cb344 100644
--- a/shared/src/com/vaadin/shared/ui/grid/GridState.java
+++ b/shared/src/com/vaadin/shared/ui/grid/GridState.java
@@ -140,6 +140,9 @@ public class GridState extends AbstractComponentState {
/** The enabled state of the editor row */
public boolean editorRowEnabled = false;
- /** Whether row data might contain generated styles */
+ /** Whether row data might contain generated row styles */
+ public boolean hasRowStyleGenerator;
+ /** Whether row data might contain generated cell styles */
public boolean hasCellStyleGenerator;
+
}