diff options
author | Johannes Dahlström <johannesd@vaadin.com> | 2014-08-25 11:02:09 +0300 |
---|---|---|
committer | Teemu Suo-Anttila <teemusa@vaadin.com> | 2014-09-09 11:44:01 +0000 |
commit | 69798ea10a289afe384617def233992eb80c9fda (patch) | |
tree | b7c213cf550d84fc875b55e38b8c7187f523a33c /shared | |
parent | eba0c3dd709f60a123860a609a50daa5558588d4 (diff) | |
download | vaadin-framework-69798ea10a289afe384617def233992eb80c9fda.tar.gz vaadin-framework-69798ea10a289afe384617def233992eb80c9fda.zip |
Implement client-side editor row widget binding (#13334)
Change-Id: I898d89cecc2d1c552a3cc32461d612d55d1babd7
Diffstat (limited to 'shared')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/GridColumnState.java | 9 |
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; |