| Package | Description |
|---|---|
| com.vaadin.flow.component.combobox |
| Modifier and Type | Method and Description |
|---|---|
void |
ComboBox.setDataProvider(ComboBox.ItemFilter<T> itemFilter,
ListDataProvider<T> listDataProvider)
Deprecated.
use instead
ComboBox.setItems(ItemFilter, ListDataProvider)
which provide access to ComboBoxListDataView |
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,
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,
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.
|
Copyright © 2021. All rights reserved.