ComboBoxLazyDataView<T> |
ComboBox.getLazyDataView() |
Gets the lazy data view for the ComboBox.
|
ComboBoxLazyDataView<T> |
ComboBox.setItems(com.vaadin.flow.data.provider.BackEndDataProvider<T,String> dataProvider) |
|
ComboBoxLazyDataView<T> |
ComboBox.setItems(com.vaadin.flow.data.provider.CallbackDataProvider.FetchCallback<T,String> fetchCallback) |
Supply items lazily with a callback from a backend.
|
ComboBoxLazyDataView<T> |
ComboBox.setItems(com.vaadin.flow.data.provider.CallbackDataProvider.FetchCallback<T,String> fetchCallback,
com.vaadin.flow.data.provider.CallbackDataProvider.CountCallback<T,String> countCallback) |
Supply items lazily with callbacks: the first one fetches the items based
on offset, limit and an optional filter, the second provides the exact
count of items in the backend.
|
<C> ComboBoxLazyDataView<T> |
ComboBox.setItemsWithFilterConverter(com.vaadin.flow.data.provider.CallbackDataProvider.FetchCallback<T,C> fetchCallback,
com.vaadin.flow.data.provider.CallbackDataProvider.CountCallback<T,C> countCallback,
com.vaadin.flow.function.SerializableFunction<String,C> filterConverter) |
Supply items lazily with callbacks: the first one fetches the items based
on offset, limit and an optional filter, the second provides the exact
count of items in the backend.
|
<C> ComboBoxLazyDataView<T> |
ComboBox.setItemsWithFilterConverter(com.vaadin.flow.data.provider.CallbackDataProvider.FetchCallback<T,C> fetchCallback,
com.vaadin.flow.function.SerializableFunction<String,C> filterConverter) |
Supply items lazily with a callback from a backend, using custom filter
type.
|