summaryrefslogtreecommitdiffstats
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, 6 insertions, 3 deletions
diff --git a/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java b/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java
index 547a4a84ca..98fa553330 100644
--- a/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java
+++ b/shared/src/com/vaadin/shared/ui/grid/GridColumnState.java
@@ -58,7 +58,7 @@ public class GridColumnState implements Serializable {
public Connector editorConnector;
/**
- * Are sorting indicators shown for a column. Default is false.
+ * Whether this column is sortable by the user
*/
public boolean sortable = false;
@@ -77,10 +77,10 @@ public class GridColumnState implements Serializable {
*/
public double minWidth = GridConstants.DEFAULT_MIN_WIDTH;
- /** Is the column currently hidden. */
+ /** Whether this column is currently hidden. */
public boolean hidden = false;
- /** Can the column be hidden by the UI. */
+ /** Whether the column can be hidden by the user. */
public boolean hidable = false;
/** The caption for the column hiding toggle. */
@@ -88,4 +88,7 @@ public class GridColumnState implements Serializable {
/** Column header caption */
public String headerCaption;
+
+ /** Whether this column is resizable by the user. */
+ public boolean resizable = true;
}