Uses of Class
com.vaadin.client.widgets.Grid.Column
-
-
Uses of Grid.Column in com.vaadin.client.connectors
Methods in com.vaadin.client.connectors with parameters of type Grid.Column Modifier and Type Method Description protected String
AbstractRendererConnector. getColumnId(Grid.Column<?,JsonObject> column)
Gets the column id for a column.String
GridConnector. getColumnId(Grid.Column<?,?> column)
-
Uses of Grid.Column in com.vaadin.client.widget.grid
Methods in com.vaadin.client.widget.grid that return Grid.Column Modifier and Type Method Description Grid.Column<?,T>
CellReference. getColumn()
Gets the column objects.Methods in com.vaadin.client.widget.grid with parameters of type Grid.Column Modifier and Type Method Description com.google.gwt.user.client.ui.Widget
EditorHandler.EditorRequest. getWidget(Grid.Column<?,T> column)
Returns the editor widget used to edit the values of the given column.com.google.gwt.user.client.ui.Widget
EditorHandler. getWidget(Grid.Column<?,T> column)
Returns a widget instance that is used to edit the values in the given column.void
CellReference. set(int columnIndexDOM, int columnIndex, Grid.Column<?,T> column)
Sets the identifying information for this cell.void
RendererCellReference. set(FlyweightCell cell, int columnIndex, Grid.Column<?,?> column)
Sets the identifying information for this cell.Method parameters in com.vaadin.client.widget.grid with type arguments of type Grid.Column Modifier and Type Method Description void
EditorHandler.EditorRequest. failure(String errorMessage, Collection<Grid.Column<?,T>> errorColumns)
Informs Grid that an error occurred while trying to process the request. -
Uses of Grid.Column in com.vaadin.client.widget.grid.datasources
Methods in com.vaadin.client.widget.grid.datasources with parameters of type Grid.Column Modifier and Type Method Description <C> Comparator<C>
ListSorter. getComparator(Grid.Column<C,T> column)
Retrieve the comparator assigned for a specific grid column.<C> void
ListSorter. setComparator(Grid.Column<C,T> column, Comparator<C> comparator)
Assign or remove a comparator for a column. -
Uses of Grid.Column in com.vaadin.client.widget.grid.events
Methods in com.vaadin.client.widget.grid.events that return Grid.Column Modifier and Type Method Description Grid.Column<?,T>
ColumnResizeEvent. getColumn()
Grid.Column<?,T>
ColumnVisibilityChangeEvent. getColumn()
Returns the column where the visibility change occurred.Constructors in com.vaadin.client.widget.grid.events with parameters of type Grid.Column Constructor Description ColumnResizeEvent(Grid.Column<?,T> column)
ColumnVisibilityChangeEvent(Grid.Column<?,T> column, boolean hidden, boolean userOriginated)
-
Uses of Grid.Column in com.vaadin.client.widget.grid.sort
Methods in com.vaadin.client.widget.grid.sort that return Grid.Column Modifier and Type Method Description Grid.Column<?,?>
SortOrder. getColumn()
Returns theGridColumn
reference given in the constructor.Methods in com.vaadin.client.widget.grid.sort with parameters of type Grid.Column Modifier and Type Method Description static Sort
Sort. by(Grid.Column<?,?> column)
Start building a Sort order by sorting a provided column in ascending order.static Sort
Sort. by(Grid.Column<?,?> column, SortDirection direction)
Start building a Sort order by sorting a provided column.Sort
Sort. then(Grid.Column<?,?> column)
Continue building a Sort order.Sort
Sort. then(Grid.Column<?,?> column, SortDirection direction)
Continue building a Sort order.Constructors in com.vaadin.client.widget.grid.sort with parameters of type Grid.Column Constructor Description SortOrder(Grid.Column<?,?> column)
Create a sort order descriptor with a default sorting direction value ofSortDirection.ASCENDING
.SortOrder(Grid.Column<?,?> column, SortDirection direction)
Create a sort order descriptor. -
Uses of Grid.Column in com.vaadin.client.widgets
Subclasses of Grid.Column in com.vaadin.client.widgets Modifier and Type Class Description class
Grid.SelectionColumn
Methods in com.vaadin.client.widgets with type parameters of type Grid.Column Modifier and Type Method Description <C extends Grid.Column<?,T>>
CGrid. addColumn(C column)
Adds a column as the last column in the grid.<C extends Grid.Column<?,T>>
CGrid. addColumn(C column, int index)
Inserts a column into a specific position in the grid.Methods in com.vaadin.client.widgets that return Grid.Column Modifier and Type Method Description Grid.Column<C,T>
Grid.Column. clearExpandRatio()
Clears the column's expand ratio.Grid.Column<?,T>
Grid. getColumn(int index)
Returns a column by its index in the grid.Grid.Column<C,T>
Grid.Column. setEditable(boolean editable)
Sets whether the values in this column should be editable by the user when the row editor is active.Grid.Column<Boolean,T>
Grid.SelectionColumn. setEditable(boolean editable)
Grid.Column<C,T>
Grid.Column. setExpandRatio(int ratio)
Sets the ratio with which the column expands.Grid.Column<Boolean,T>
Grid.SelectionColumn. setExpandRatio(int ratio)
Grid.Column<C,T>
Grid.Column. setHeaderCaption(String caption)
Sets a header caption for this column.Grid.Column<C,T>
Grid.Column. setHidable(boolean hidable)
Set whether it is possible for the user to hide this column or not.Grid.Column<C,T>
Grid.Column. setHidden(boolean hidden)
Hides or shows the column.Grid.Column<C,T>
Grid.Column. setHidingToggleCaption(String hidingToggleCaption)
Sets the hiding toggle's caption for this column.Grid.Column<C,T>
Grid.Column. setMaximumWidth(double pixels)
Sets the maximum width for this column.Grid.Column<Boolean,T>
Grid.SelectionColumn. setMaximumWidth(double pixels)
Grid.Column<C,T>
Grid.Column. setMinimumWidth(double pixels)
Sets the minimum width for this column.Grid.Column<Boolean,T>
Grid.SelectionColumn. setMinimumWidth(double pixels)
Grid.Column<C,T>
Grid.Column. setRenderer(Renderer<? super C> renderer)
Sets a customRenderer
for this column.Grid.Column<C,T>
Grid.Column. setResizable(boolean resizable)
Sets whether this column can be resized by the user.Grid.Column<C,T>
Grid.Column. setSortable(boolean sortable)
Sets whether the column should be sortable by the user.Grid.Column<C,T>
Grid.Column. setWidth(double pixels)
Sets the pixel width of the column.Grid.Column<Boolean,T>
Grid.SelectionColumn. setWidth(double pixels)
Methods in com.vaadin.client.widgets that return types with arguments of type Grid.Column Modifier and Type Method Description List<Grid.Column<?,T>>
Grid. getColumns()
Returns a list columns in the grid, including hidden columns.List<Grid.Column<?,T>>
Grid. getVisibleColumns()
Returns a list of the currently visible columns in the grid.Methods in com.vaadin.client.widgets with parameters of type Grid.Column Modifier and Type Method Description protected void
Grid.StaticSection.StaticRow. addCell(Grid.Column<?,?> column)
protected void
Grid.Header. addColumn(Grid.Column<?,?> column)
protected void
Grid.StaticSection. addColumn(Grid.Column<?,?> column)
void
Grid. addColumns(Grid.Column<?,T>... columns)
Adds columns as the last columns in the grid.CELLTYPE
Grid.StaticSection.StaticRow. getCell(Grid.Column<?,?> column)
Returns the cell on given GridColumn.com.google.gwt.user.client.ui.Widget
Grid. getEditorWidget(Grid.Column<?,T> column)
Returns the editor widget associated with the given column.protected com.google.gwt.user.client.ui.Widget
Grid.Editor. getWidget(Grid.Column<?,T> column)
Returns the editor widget associated with the given column.boolean
Grid.Editor. isEditorColumnError(Grid.Column<?,T> column)
CELLTYPE
Grid.StaticSection.StaticRow. join(Grid.Column<?,?>... columns)
Merges columns cells in a rowprotected void
Grid.StaticSection.StaticRow. removeCell(Grid.Column<?,?> column)
void
Grid. removeColumn(Grid.Column<?,T> column)
Removes a column from the grid.protected void
Grid.StaticSection. removeColumn(Grid.Column<?,?> column)
void
Grid. setColumnOrder(Grid.Column<?,T>... orderedColumns)
Sets a new column order for the grid.void
Grid.Editor. setEditorColumnError(Grid.Column<?,T> column, boolean hasError)
<C> void
Grid. sort(Grid.Column<C,T> column)
Sorts the Grid data in ascending order along one column.<C> void
Grid. sort(Grid.Column<C,T> column, SortDirection direction)
Sorts the Grid data along one column.Method parameters in com.vaadin.client.widgets with type arguments of type Grid.Column Modifier and Type Method Description void
Grid.Editor. setEditorError(String errorMessage, Collection<Grid.Column<?,T>> errorColumns)
-