Uses of Class
com.vaadin.client.widgets.Grid.Column
-
-
Uses of Grid.Column in com.vaadin.client.connectors.grid
Subclasses of Grid.Column in com.vaadin.client.connectors.grid Modifier and Type Class Description static classColumnConnector.CustomColumnClass for representing a custom column.Methods in com.vaadin.client.connectors.grid with parameters of type Grid.Column Modifier and Type Method Description protected StringAbstractGridRendererConnector. getColumnId(Grid.Column<?,elemental.json.JsonObject> column)Gets the column id for a column.StringGridConnector. getColumnId(Grid.Column<?,?> column)Gets the string identifier of the given column in this grid. -
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.WidgetEditorHandler.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.WidgetEditorHandler. getWidget(Grid.Column<?,T> column)Returns a widget instance that is used to edit the values in the given column.protected booleanDefaultEditorEventHandler. isEditable(Grid<T> grid, Grid.Column<?,T> column)Checks whether the field within the given editor column is editable.voidCellReference. set(int columnIndexDOM, int columnIndex, Grid.Column<?,T> column)Sets the identifying information for this cell.voidRendererCellReference. 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 default voidEditorHandler.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> voidListSorter. 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.Methods in com.vaadin.client.widget.grid.events that return types with arguments of type Grid.Column Modifier and Type Method Description List<Grid.Column<?,T>>ColumnReorderEvent. getNewColumnOrder()Gets the new ordering of columns.List<Grid.Column<?,T>>ColumnReorderEvent. getOldColumnOrder()Gets the ordering of columns prior to this event.Constructors in com.vaadin.client.widget.grid.events with parameters of type Grid.Column Constructor Description ColumnResizeEvent(Grid.Column<?,T> column)Constructs a resize event for a grid column.ColumnVisibilityChangeEvent(Grid.Column<?,T> column, boolean hidden, boolean userOriginated)Constructs a visibility change event for a grid column.Constructor parameters in com.vaadin.client.widget.grid.events with type arguments of type Grid.Column Constructor Description ColumnReorderEvent(List<Grid.Column<?,T>> oldColumnOrder, List<Grid.Column<?,T>> newColumnOrder, boolean userOriginated)Constructs a reorder event for grid columns. -
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 theGridColumnreference given in the constructor.Methods in com.vaadin.client.widget.grid.sort with parameters of type Grid.Column Modifier and Type Method Description static SortSort. by(Grid.Column<?,?> column)Start building a Sort order by sorting a provided column in ascending order.static SortSort. by(Grid.Column<?,?> column, SortDirection direction)Start building a Sort order by sorting a provided column.SortSort. then(Grid.Column<?,?> column)Continue building a Sort order.SortSort. 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 classGrid.SelectionColumnA column that contains CheckBoxes for representing Grid's row selection.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. setAssistiveCaption(String caption)Sets the header aria-label for this column.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 customRendererfor 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 voidGrid.StaticSection.StaticRow. addCell(Grid.Column<?,?> column)Creates and adds a cell to this row for the given column.protected voidGrid.Header. addColumn(Grid.Column<?,?> column)protected voidGrid.StaticSection. addColumn(Grid.Column<?,?> column)Adds cells for the given column to all the rows within this section.voidGrid. addColumns(Grid.Column<?,T>... columns)Adds columns as the last columns in the grid.CELLTYPEGrid.StaticSection.StaticRow. getCell(Grid.Column<?,?> column)Returns the cell on given GridColumn.com.google.gwt.user.client.ui.WidgetGrid. getEditorWidget(Grid.Column<?,T> column)Returns the editor widget associated with the given column.protected intGrid.StaticSection.StaticRow. getSizeOfCellGroup(Grid.Column<?,?> column)Returns the size of the cell group for the given column.protected com.google.gwt.user.client.ui.WidgetGrid.Editor. getWidget(Grid.Column<?,T> column)Returns the editor widget associated with the given column.booleanGrid.Editor. isEditorColumnError(Grid.Column<?,T> column)Returns true if the column has been listed as containing an error.CELLTYPEGrid.StaticSection.StaticRow. join(Grid.Column<?,?>... columns)Merges columns cells in a row.protected voidGrid.StaticSection.StaticRow. removeCell(Grid.Column<?,?> column)Removes a cell for the given column from this row.voidGrid. removeColumn(Grid.Column<?,T> column)Removes a column from the grid.protected voidGrid.StaticSection. removeColumn(Grid.Column<?,?> column)Removes cells for the given column from all the rows within this section.voidGrid. setColumnOrder(Grid.Column<?,T>... orderedColumns)Sets a new column order for the grid.voidGrid.Editor. setEditorColumnError(Grid.Column<?,T> column, boolean hasError)If the given column is indicated to have an error in the editor, sets the error styles to the corresponding editor cell and lists the column as having an error.<C> voidGrid. sort(Grid.Column<C,T> column)Sorts the Grid data in ascending order along one column.<C> voidGrid. 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 voidGrid.Editor. setEditorError(String errorMessage, Collection<Grid.Column<?,T>> errorColumns)Sets an error message for the editor, or removes it if the given message isnull.
-