Serialized Form
-
Package org.vaadin.addons.antlerflow.grid
-
Class org.vaadin.addons.antlerflow.grid.AdvancedGrid
class AdvancedGrid extends com.vaadin.flow.component.Component implements Serializable-
Serialized Fields
-
exportButton
com.vaadin.flow.component.button.Button exportButton
-
exportConfig
GridExportConfig<T> exportConfig
-
exportHandler
GridExportHandler<T> exportHandler
-
externalDataProvider
com.vaadin.flow.data.provider.DataProvider<T,
?> externalDataProvider If set, this is the data source for pagination + exporting. Otherwise, we use the grid's original provider. -
innerGrid
com.vaadin.flow.component.grid.Grid<T> innerGrid
-
originalInnerGridDataProvider
com.vaadin.flow.data.provider.DataProvider<T,
?> originalInnerGridDataProvider The provider that was on the injected inner grid (before we temporarily replace it with a paged provider). -
pageSizes
SortedSet<Integer> pageSizes
-
paginated
boolean paginated
-
paginator
Paginator paginator
-
registrations
List<com.vaadin.flow.shared.Registration> registrations
-
-
-
-
Package org.vaadin.addons.antlerflow.grid.dataprovider
-
Class org.vaadin.addons.antlerflow.grid.dataprovider.SpringPageableDataProvider
class SpringPageableDataProvider extends com.vaadin.flow.data.provider.AbstractBackEndDataProvider<T,F> implements Serializable -
Serialized Fields
-
cache
org.vaadin.addons.antlerflow.grid.dataprovider.SpringPageableDataProvider.CacheEntry<T> cache
This provider effectively caches a single "last query" result. A single-entry cache is simpler than a Map and matches the current behavior (clear on new key). -
countCache
org.vaadin.addons.antlerflow.grid.dataprovider.SpringPageableDataProvider.CountCacheEntry countCache
Cache for total count, keyed by filter + sort only (ignores paging), so sizeInBackEnd won't refetch when only pageSize/limit changes. -
dataSupplier
BiFunction<Optional<F>, org.springframework.data.domain.Pageable, org.springframework.data.domain.Page<T>> dataSupplier
-
filter
F filter
-
-
-
-
Package org.vaadin.addons.antlerflow.grid.pagination
-
Class org.vaadin.addons.antlerflow.grid.pagination.Paginator
class Paginator extends com.vaadin.flow.component.Component implements Serializable -
Class org.vaadin.addons.antlerflow.grid.pagination.Paginator.PageChangeEvent
class PageChangeEvent extends com.vaadin.flow.component.ComponentEvent<Paginator> implements Serializable-
Serialized Fields
-
limit
int limit
-
offset
int offset
-
page
int page
-
pageSize
int pageSize
-
totalPages
int totalPages
-
-
-