Uses of Class
com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
-
Packages that use ComboBoxListDataView Package Description com.vaadin.flow.component.combobox com.vaadin.flow.component.combobox.dataview -
-
Uses of ComboBoxListDataView in com.vaadin.flow.component.combobox
Methods in com.vaadin.flow.component.combobox that return ComboBoxListDataView Modifier and Type Method Description ComboBoxListDataView<T>ComboBox. getListDataView()Gets the list data view for the ComboBox.ComboBoxListDataView<T>ComboBox. setItems(ComboBox.ItemFilter<T> itemFilter, com.vaadin.flow.data.provider.ListDataProvider<T> 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.ComboBoxListDataView<T>ComboBox. setItems(ComboBox.ItemFilter<T> itemFilter, Collection<T> 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.ComboBoxListDataView<T>ComboBox. setItems(ComboBox.ItemFilter<T> itemFilter, T... 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.ComboBoxListDataView<T>ComboBox. setItems(com.vaadin.flow.data.provider.ListDataProvider<T> dataProvider)ComboBoxListDataView<T>ComboBox. setItems(Collection<T> items) -
Uses of ComboBoxListDataView in com.vaadin.flow.component.combobox.dataview
Methods in com.vaadin.flow.component.combobox.dataview that return ComboBoxListDataView Modifier and Type Method Description ComboBoxListDataView<T>ComboBoxListDataView. addFilter(com.vaadin.flow.function.SerializablePredicate<T> filter)Adds a filter to be applied to all queries.ComboBoxListDataView<T>ComboBoxListDataView. removeFilters()Removes all in-memory filters set or added.ComboBoxListDataView<T>ComboBoxListDataView. setFilter(com.vaadin.flow.function.SerializablePredicate<T> filter)Sets a filter to be applied to the data.
-