ComboBoxLazyDataView<TItem> |
ComboBoxBase.getLazyDataView() |
Gets the lazy data view for the ComboBox.
|
ComboBoxLazyDataView<TItem> |
ComboBoxBase.setItems(BackEndDataProvider<TItem,String> dataProvider) |
|
ComboBoxLazyDataView<TItem> |
ComboBoxBase.setItems(CallbackDataProvider.FetchCallback<TItem,String> fetchCallback) |
Supply items lazily with a callback from a backend.
|
ComboBoxLazyDataView<TItem> |
ComboBoxBase.setItems(CallbackDataProvider.FetchCallback<TItem,String> fetchCallback,
CallbackDataProvider.CountCallback<TItem,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<TItem> |
ComboBoxBase.setItemsWithFilterConverter(CallbackDataProvider.FetchCallback<TItem,C> fetchCallback,
CallbackDataProvider.CountCallback<TItem,C> countCallback,
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<TItem> |
ComboBoxBase.setItemsWithFilterConverter(CallbackDataProvider.FetchCallback<TItem,C> fetchCallback,
SerializableFunction<String,C> filterConverter) |
Supply items lazily with a callback from a backend, using custom filter
type.
|