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 aListDataViewthat 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.