public static interface FilterableProvider.FilterRegistration<T>
DataProvider
and can be used to remove this link.| Modifier and Type | Method and Description |
|---|---|
void |
remove()
Remove the bound filter from the parent
DataProvider. |
void |
replace(DataFilter<T> filter,
boolean incremetalFiltering)
Replace the bound filter on parent
DataProvider by the new filter provided. |
void remove()
DataProvider.void replace(DataFilter<T> filter, boolean incremetalFiltering)
DataProvider by the new filter provided. This operation
will remove the old filter and add the new one in its place. It is most efficient than call remove
and add directly, because it will fire only one refresh operation.filter - the new filter to replace the old oneincremetalFiltering - If false, after replace the filter, the entire set of data will be revalidated by the new filter.
If true, the new filter will consider the previous filtered data as its input for data filtering, allowing that widgets
make incremental filtering.Copyright © 2015. All rights reserved.