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<TItem>ComboBoxBase. getListDataView()Gets the list data view for the ComboBox.ComboBoxListDataView<TItem>ComboBoxBase. setItems(ComboBox.ItemFilter<TItem> itemFilter, com.vaadin.flow.data.provider.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.ComboBoxListDataView<TItem>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.ComboBoxListDataView<TItem>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.ComboBoxListDataView<TItem>ComboBoxBase. setItems(com.vaadin.flow.data.provider.ListDataProvider<TItem> dataProvider)ComboBoxListDataView<TItem>ComboBoxBase. setItems(Collection<TItem> 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.
-