Uses of Interface
com.vaadin.flow.component.combobox.ComboBox.ItemFilter
-
Packages that use ComboBox.ItemFilter Package Description com.vaadin.flow.component.combobox -
-
Uses of ComboBox.ItemFilter in com.vaadin.flow.component.combobox
Methods in com.vaadin.flow.component.combobox with parameters of type ComboBox.ItemFilter Modifier and Type Method Description voidComboBox. setDataProvider(ComboBox.ItemFilter<T> itemFilter, com.vaadin.flow.data.provider.ListDataProvider<T> listDataProvider)Deprecated.use insteadComboBox.setItems(ItemFilter, ListDataProvider)which provide access toComboBoxListDataViewComboBoxListDataView<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.
-