Uses of Interface
com.vaadin.ui.components.grid.SourceDataProviderUpdater
-
Packages that use SourceDataProviderUpdater Package Description com.vaadin.ui.components.grid -
-
Uses of SourceDataProviderUpdater in com.vaadin.ui.components.grid
Fields in com.vaadin.ui.components.grid declared as SourceDataProviderUpdater Modifier and Type Field Description static SourceDataProviderUpdater
SourceDataProviderUpdater. NOOP
A NOOP updater that does not do anything for the source data provider.Methods in com.vaadin.ui.components.grid that return SourceDataProviderUpdater Modifier and Type Method Description SourceDataProviderUpdater<T>
GridRowDragger. getSourceDataProviderUpdater()
Returns the source grid data provider updater.Methods in com.vaadin.ui.components.grid with parameters of type SourceDataProviderUpdater Modifier and Type Method Description void
GridRowDragger. setSourceDataProviderUpdater(SourceDataProviderUpdater<T> sourceDataProviderUpdater)
Sets the source data provider updater, which handles removing items from the drag source grid.Constructors in com.vaadin.ui.components.grid with parameters of type SourceDataProviderUpdater Constructor Description GridRowDragger(Grid<T> source, Grid<T> target, TargetDataProviderUpdater<T> targetDataProviderUpdater, SourceDataProviderUpdater<T> sourceDataProviderUpdater)
Enables DnD moving of rows from the source grid to the target grid with the custom data provider updaters.
-