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.ComboBoxListDataView
Packages that use ComboBoxListDataView
-
Uses of ComboBoxListDataView in com.vaadin.flow.component.combobox
Methods in com.vaadin.flow.component.combobox that return ComboBoxListDataViewModifier and TypeMethodDescriptionComboBoxBase.getListDataView()
Gets the list data view for the ComboBox.
ComboBoxBase.setItems
(ComboBox.ItemFilter<TItem> itemFilter, ListDataProvider<TItem> listDataProvider) Sets a ListDataProvider for this combo box and a filtering function for defining which items are displayed when user types into the combo box.
ComboBoxBase.setItems
(ComboBox.ItemFilter<TItem> itemFilter, Collection<TItem> items) Sets the data items of this combo box and a filtering function for defining which items are displayed when user types into the combo box.
ComboBoxBase.setItems
(ComboBox.ItemFilter<TItem> itemFilter, TItem... items) Sets the data items of this combo box and a filtering function for defining which items are displayed when user types into the combo box.
ComboBoxBase.setItems
(ListDataProvider<TItem> dataProvider) ComboBoxBase.setItems
(Collection<TItem> items) Sets the items from the given Collection and returns a
ListDataView
that provides information and allows operations on the items. -
Uses of ComboBoxListDataView in com.vaadin.flow.component.combobox.dataview
Methods in com.vaadin.flow.component.combobox.dataview that return ComboBoxListDataViewModifier and TypeMethodDescriptionComboBoxListDataView.addFilter
(SerializablePredicate<T> filter) Adds a filter to be applied to all queries.
ComboBoxListDataView.removeFilters()
Removes all in-memory filters set or added.
ComboBoxListDataView.setFilter
(SerializablePredicate<T> filter) Sets a filter to be applied to the data.