Grid.Column |
Grid.addColumn(Object propertyId) |
Adds a new Column to Grid.
|
Grid.Column |
Grid.addColumn(Object propertyId,
Class<?> type) |
Adds a new Column to Grid.
|
Grid.Column |
Grid.Column.clearExpandRatio() |
Clears the expand ratio for this column.
|
protected Grid.Column |
Grid.AbstractGridExtension.getColumn(String columnId) |
Gets the column for a column id.
|
Grid.Column |
Grid.ColumnResizeEvent.getColumn() |
Returns the column that was resized.
|
Grid.Column |
Grid.ColumnVisibilityChangeEvent.getColumn() |
Gets the column that became hidden or visible.
|
Grid.Column |
Grid.getColumn(Object propertyId) |
Returns a column based on the property id
|
Grid.Column |
Grid.Column.setConverter(Converter<?,?> converter) |
Sets the converter used to convert from the property value type to
the renderer presentation type.
|
Grid.Column |
Grid.Column.setEditable(boolean editable) |
Sets whether the properties corresponding to this column should be
editable when the item editor is active.
|
Grid.Column |
Grid.Column.setEditorField(Field<?> editor) |
Sets the field component used to edit the properties in this column
when the item editor is active.
|
Grid.Column |
Grid.Column.setExpandRatio(int expandRatio) |
Sets the ratio with which the column expands.
|
Grid.Column |
Grid.Column.setHeaderCaption(String caption) |
Sets the caption of the header.
|
Grid.Column |
Grid.Column.setHidable(boolean hidable) |
Sets whether this column can be hidden by the user.
|
Grid.Column |
Grid.Column.setHidden(boolean hidden) |
Hides or shows the column.
|
Grid.Column |
Grid.Column.setHidingToggleCaption(String hidingToggleCaption) |
Sets the caption of the hiding toggle for this column.
|
Grid.Column |
Grid.Column.setLastFrozenColumn() |
Sets this column as the last frozen column in its grid.
|
Grid.Column |
Grid.Column.setMaximumWidth(double pixels) |
Sets the maximum width for this column.
|
Grid.Column |
Grid.Column.setMinimumWidth(double pixels) |
Sets the minimum width for this column.
|
Grid.Column |
Grid.Column.setRenderer(Renderer<?> renderer) |
Sets the renderer for this column.
|
<T> Grid.Column |
Grid.Column.setRenderer(Renderer<T> renderer,
Converter<? extends T,?> converter) |
Sets the renderer for this column and the converter used to convert
from the property value type to the renderer presentation type.
|
Grid.Column |
Grid.Column.setResizable(boolean resizable) |
Sets whether this column can be resized by the user.
|
Grid.Column |
Grid.Column.setSortable(boolean sortable) |
Sets whether this column is sortable by the user.
|
Grid.Column |
Grid.Column.setWidth(double pixelWidth) |
Sets the width (in pixels).
|
Grid.Column |
Grid.Column.setWidthUndefined() |
Marks the column width as undefined.
|