Uses of Class
com.vaadin.flow.component.grid.Grid
-
Uses of Grid in com.vaadin.flow.component.crud
Subclasses of Grid in com.vaadin.flow.component.crudModifier and TypeClassDescriptionclass
CrudGrid<E>
A simple grid implementation for Crud that allows searching and sorting backed by a data provider.
Methods in com.vaadin.flow.component.crud that return GridMethods in com.vaadin.flow.component.crud with parameters of type GridModifier and TypeMethodDescriptionstatic void
Crud.addEditColumn
(Grid<?> grid) A helper method to add an edit column to a grid.
static void
Crud.addEditColumn
(Grid<?> grid, CrudI18n crudI18n) A helper method to add an edit column to a grid.
static boolean
Crud.hasEditColumn
(Grid<?> grid) Checks if an edit column has been added to the Grid using
Crud.addEditColumn(Grid)
static void
Crud.removeEditColumn
(Grid<?> grid) Removes the crud edit column from a grid
void
Sets the grid
Constructors in com.vaadin.flow.component.crud with parameters of type Grid -
Uses of Grid in com.vaadin.flow.component.grid
Classes in com.vaadin.flow.component.grid with type parameters of type GridModifier and TypeClassDescriptionclass
GridTester<T extends Grid<Y>,
Y> Tester for Grid components.
Fields in com.vaadin.flow.component.grid declared as GridModifier and TypeFieldDescriptionprotected final Grid<?>
AbstractColumn.grid
protected final Grid<?>
AbstractColumn.grid
Methods in com.vaadin.flow.component.grid that return GridModifier and TypeMethodDescriptionGrid.AbstractGridExtension.getGrid()
Gets the Grid this extension extends.
Methods in com.vaadin.flow.component.grid that return types with arguments of type GridModifier and TypeMethodDescriptionMultiSelect<Grid<T>,
T> AbstractGridMultiSelectionModel.asMultiSelect()
MultiSelect<Grid<T>,
T> Grid.asMultiSelect()
Use this grid as a multiselect in
Binder
.MultiSelect<Grid<T>,
T> GridMultiSelectionModel.asMultiSelect()
Gets a wrapper to use this multiselection model as a multiselect in
Binder
.SingleSelect<Grid<T>,
T> AbstractGridSingleSelectionModel.asSingleSelect()
SingleSelect<Grid<T>,
T> Grid.asSingleSelect()
Use this grid as a single select in
Binder
.SingleSelect<Grid<T>,
T> GridSingleSelectionModel.asSingleSelect()
Gets a wrapper to use this single selection model as a single select in
Binder
.Methods in com.vaadin.flow.component.grid with parameters of type GridModifier and TypeMethodDescriptionprotected <T> GridSelectionModel<T>
Grid.SelectionMode.createModel
(Grid<T> grid) Creates the selection model to use with this enum.
protected void
Adds this extension to the given grid.
Method parameters in com.vaadin.flow.component.grid with type arguments of type GridModifier and TypeMethodDescriptionAbstractGridMultiSelectionModel.addMultiSelectionListener
(MultiSelectionListener<Grid<T>, T> listener) GridMultiSelectionModel.addMultiSelectionListener
(MultiSelectionListener<Grid<T>, T> listener) Adds a selection listener that will be called when the selection is changed either by the user or programmatically.
AbstractGridMultiSelectionModel.addSelectionListener
(SelectionListener<Grid<T>, T> listener) AbstractGridSingleSelectionModel.addSelectionListener
(SelectionListener<Grid<T>, T> listener) Grid.addSelectionListener
(SelectionListener<Grid<T>, T> listener) Adds a selection listener to the current selection model.
GridNoneSelectionModel.addSelectionListener
(SelectionListener<Grid<T>, T> listener) AbstractGridSingleSelectionModel.addSingleSelectionListener
(SingleSelectionListener<Grid<T>, T> listener) GridSingleSelectionModel.addSingleSelectionListener
(SingleSelectionListener<Grid<T>, T> listener) Adds a selection listener that will be called when the selection is changed either by the user or programmatically.
Grid.addSortListener
(ComponentEventListener<SortEvent<Grid<T>, GridSortOrder<T>>> listener) protected abstract void
AbstractGridMultiSelectionModel.fireSelectionEvent
(SelectionEvent<Grid<T>, T> event) Method for handling the firing of selection events.
protected abstract void
AbstractGridSingleSelectionModel.fireSelectionEvent
(SelectionEvent<Grid<T>, T> event) Method for handling the firing of selection events.
Constructors in com.vaadin.flow.component.grid with parameters of type GridModifierConstructorDescriptionAbstractGridExtension
(Grid<T> grid) Constructs a new grid extension, extending the given grid.
AbstractGridMultiSelectionModel
(Grid<T> grid) Constructor for passing a reference of the grid to this implementation.
Constructor for passing a reference of the grid to this implementation.
CellFocusEvent
(Grid<T> source, boolean fromClient, String itemKey, String internalColumnId, String sectionName) Creates a new cell focus event.
ClientItemToggleEvent
(Grid<T> source, T item, boolean isSelected, boolean isShiftKey) Creates a new item toggle event.
Constructs a new Column for use inside a Grid.
ColumnReorderEvent
(Grid<T> source, boolean fromClient, elemental.json.JsonArray columnIDs) Creates a new column reorder event.
ColumnReorderEvent
(Grid<T> source, boolean fromClient, List<Grid.Column<T>> columns) Creates a new column reorder event.
ColumnResizeEvent
(Grid<T> source, boolean fromClient, String resizedColumnKey) Creates a new column resize event.
ItemClickEvent
(Grid<T> source, boolean fromClient, String itemKey, String internalColumnId, int screenX, int screenY, int clientX, int clientY, int clickCount, int button, boolean ctrlKey, boolean shiftKey, boolean altKey, boolean metaKey) Creates a new item click event.
ItemDoubleClickEvent
(Grid<T> source, boolean fromClient, String itemKey, String internalColumnId, int screenX, int screenY, int clientX, int clientY, int clickCount, int button, boolean ctrlKey, boolean shiftKey, boolean altKey, boolean metaKey) Creates a new item double click event.
-
Uses of Grid in com.vaadin.flow.component.grid.dataview
Constructors in com.vaadin.flow.component.grid.dataview with parameters of type GridModifierConstructorDescriptionGridDataView
(DataCommunicator<T> dataCommunicator, Grid<T> grid) GridLazyDataView
(DataCommunicator<T> dataCommunicator, Grid<T> component) Creates a new lazy data view for grid and verifies the passed data provider is compatible with this data view implementation.
GridListDataView
(DataCommunicator<T> dataCommunicator, Grid<T> grid, SerializableBiConsumer<SerializablePredicate<T>, SerializableComparator<T>> filterOrSortingChangedCallback) Creates a new instance of Grid in-memory data view and verifies the passed data provider is compatible with this data view implementation.
-
Uses of Grid in com.vaadin.flow.component.grid.dnd
Constructors in com.vaadin.flow.component.grid.dnd with parameters of type GridModifierConstructorDescriptionGridDragEndEvent
(Grid<T> source, boolean fromClient) Creates a grid drag end event.
GridDragStartEvent
(Grid<T> source, boolean fromClient, elemental.json.JsonObject details) Creates a grid drag start event.
GridDropEvent
(Grid<T> source, boolean fromClient, elemental.json.JsonObject item, String dropLocation, elemental.json.JsonArray dragData) Creates a grid drop event.
-
Uses of Grid in com.vaadin.flow.component.grid.editor
Methods in com.vaadin.flow.component.grid.editor that return GridModifier and TypeMethodDescriptionEditor.getGrid()
Gets the Grid instance which this editor belongs to.
EditorEvent.getGrid()
Gets the editors' grid.
EditorImpl.getGrid()
Constructors in com.vaadin.flow.component.grid.editor with parameters of type Grid -
Uses of Grid in com.vaadin.flow.component.gridpro
Subclasses of Grid in com.vaadin.flow.component.gridpro -
Uses of Grid in com.vaadin.flow.component.treegrid
Subclasses of Grid in com.vaadin.flow.component.treegridModifier and TypeClassDescriptionclass
TreeGrid<T>
Tree Grid is a component for displaying hierarchical tabular data grouped into expandable and collapsible nodes.
-
Uses of Grid in com.vaadin.testbench.unit
Methods in com.vaadin.testbench.unit that return types with arguments of type GridModifier and TypeMethodDescriptiondefault <V> GridTester<Grid<V>,
V> default <V> GridTester<Grid<V>,
V> Methods in com.vaadin.testbench.unit with parameters of type GridModifier and TypeMethodDescriptiondefault <V> GridTester<Grid<V>,
V> default <V> GridTester<Grid<V>,
V>