We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
Uses of Class
com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
Packages that use ComboBoxLazyDataView
-
Uses of ComboBoxLazyDataView in com.vaadin.flow.component.combobox
Methods in com.vaadin.flow.component.combobox that return ComboBoxLazyDataViewModifier and TypeMethodDescriptionComboBoxBase.getLazyDataView()
Gets the lazy data view for the ComboBox.
ComboBoxBase.setItems
(BackEndDataProvider<TItem, String> dataProvider) ComboBoxBase.setItems
(CallbackDataProvider.FetchCallback<TItem, String> fetchCallback) Supply items lazily with a callback from a backend.
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.
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.
ComboBoxBase.setItemsWithFilterConverter
(CallbackDataProvider.FetchCallback<TItem, C> fetchCallback, SerializableFunction<String, C> filterConverter) Supply items lazily with a callback from a backend, using custom filter type.