aboutsummaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/grid/GridColumnState.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java b/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java
index b73e7cffd5..d9c72d5ebd 100644
--- a/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java
+++ b/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java
@@ -56,9 +56,18 @@ public class GridColumnState implements Serializable {
*/
public int width = 100;
+ /**
+ * The connector for the renderer used to render the cells in this column.
+ */
public Connector rendererConnector;
/**
+ * The connector for the field used to edit cells in this column when the
+ * editor row is active.
+ */
+ public Connector editorConnector;
+
+ /**
* Are sorting indicators shown for a column. Default is false.
*/
public boolean sortable = false;