Uses of Class
com.vaadin.flow.component.grid.Grid
Packages that use Grid
Package
Description
-
Uses of Grid in com.vaadin.flow.component.grid
Fields in com.vaadin.flow.component.grid declared as GridMethods 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 TypeMethodDescriptionAbstractGridMultiSelectionModel.asMultiSelect()Grid.asMultiSelect()Use this grid as a multiselect inBinder.GridMultiSelectionModel.asMultiSelect()Gets a wrapper to use this multiselection model as a multiselect inBinder.AbstractGridSingleSelectionModel.asSingleSelect()Grid.asSingleSelect()Use this grid as a single select inBinder.GridSingleSelectionModel.asSingleSelect()Gets a wrapper to use this single selection model as a single select inBinder.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 voidAdds this extension to the given grid.Method parameters in com.vaadin.flow.component.grid with type arguments of type GridModifier and TypeMethodDescriptioncom.vaadin.flow.shared.RegistrationAbstractGridMultiSelectionModel.addMultiSelectionListener(com.vaadin.flow.data.selection.MultiSelectionListener<Grid<T>, T> listener) com.vaadin.flow.shared.RegistrationGridMultiSelectionModel.addMultiSelectionListener(com.vaadin.flow.data.selection.MultiSelectionListener<Grid<T>, T> listener) Adds a selection listener that will be called when the selection is changed either by the user or programmatically.com.vaadin.flow.shared.RegistrationAbstractGridMultiSelectionModel.addSelectionListener(com.vaadin.flow.data.selection.SelectionListener<Grid<T>, T> listener) com.vaadin.flow.shared.RegistrationAbstractGridSingleSelectionModel.addSelectionListener(com.vaadin.flow.data.selection.SelectionListener<Grid<T>, T> listener) com.vaadin.flow.shared.RegistrationGrid.addSelectionListener(com.vaadin.flow.data.selection.SelectionListener<Grid<T>, T> listener) Adds a selection listener to the current selection model.com.vaadin.flow.shared.RegistrationGridNoneSelectionModel.addSelectionListener(com.vaadin.flow.data.selection.SelectionListener<Grid<T>, T> listener) com.vaadin.flow.shared.RegistrationAbstractGridSingleSelectionModel.addSingleSelectionListener(com.vaadin.flow.data.selection.SingleSelectionListener<Grid<T>, T> listener) com.vaadin.flow.shared.RegistrationGridSingleSelectionModel.addSingleSelectionListener(com.vaadin.flow.data.selection.SingleSelectionListener<Grid<T>, T> listener) Adds a selection listener that will be called when the selection is changed either by the user or programmatically.com.vaadin.flow.shared.RegistrationGrid.addSortListener(com.vaadin.flow.component.ComponentEventListener<com.vaadin.flow.data.event.SortEvent<Grid<T>, GridSortOrder<T>>> listener) protected abstract voidAbstractGridMultiSelectionModel.fireSelectionEvent(com.vaadin.flow.data.selection.SelectionEvent<Grid<T>, T> event) Method for handling the firing of selection events.protected abstract voidAbstractGridSingleSelectionModel.fireSelectionEvent(com.vaadin.flow.data.selection.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, List<Grid.Column<T>> columns) Creates a new column reorder event.ColumnReorderEvent(Grid<T> source, boolean fromClient, tools.jackson.databind.node.ArrayNode columnIDs) 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(com.vaadin.flow.data.provider.DataCommunicator<T> dataCommunicator, Grid<T> grid) GridLazyDataView(com.vaadin.flow.data.provider.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(com.vaadin.flow.data.provider.DataCommunicator<T> dataCommunicator, Grid<T> grid, com.vaadin.flow.function.SerializableBiConsumer<com.vaadin.flow.function.SerializablePredicate<T>, com.vaadin.flow.function.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, tools.jackson.databind.node.ObjectNode details) Creates a grid drag start event.GridDropEvent(Grid<T> source, boolean fromClient, tools.jackson.databind.node.ObjectNode item, String dropLocation, tools.jackson.databind.node.ArrayNode 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 GridModifierConstructorDescriptionEditorImpl(Grid<T> grid, com.vaadin.flow.data.binder.PropertySet<T> propertySet) -
Uses of Grid in com.vaadin.flow.component.treegrid
Subclasses of Grid in com.vaadin.flow.component.treegridModifier and TypeClassDescriptionclassTreeGrid<T>Tree Grid is a component for displaying hierarchical tabular data grouped into expandable and collapsible nodes.