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 voidComboBoxBase. setDataProvider(ComboBox.ItemFilter<TItem> itemFilter, com.vaadin.flow.data.provider.ListDataProvider<TItem> listDataProvider)Deprecated.use insteadComboBoxBase.setItems(ComboBox.ItemFilter, ListDataProvider)which provide access toComboBoxListDataViewComboBoxListDataView<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.
-