Uses of Class
com.vaadin.flow.component.combobox.dataview.ComboBoxDataView

Packages that use ComboBoxDataView
Package
Description
 
  • Uses of ComboBoxDataView in com.vaadin.flow.component.combobox

    Modifier and Type
    Method
    Description
    ComboBoxBase.bindItems(com.vaadin.flow.signals.Signal<? extends List<? extends com.vaadin.flow.signals.Signal<TItem>>> itemsSignal)
    Binds the given signal to the items of the combo box as a one-way binding so that the items are updated when the signal's value or any individual item signal changes.
    ComboBoxBase.bindItems(com.vaadin.flow.signals.Signal<? extends List<? extends com.vaadin.flow.signals.Signal<TItem>>> itemsSignal, com.vaadin.flow.function.SerializableFunction<String,com.vaadin.flow.function.SerializablePredicate<TItem>> filterConverter)
    Binds the given signal to the items of the combo box as a one-way binding so that the items are updated when the signal's value or any individual item signal changes, using the provided filter converter.
    ComboBoxBase.getGenericDataView()
    Gets the generic data view for the ComboBox.
    ComboBoxBase.setItems(com.vaadin.flow.data.provider.DataProvider<TItem,String> dataProvider)
     
    ComboBoxBase.setItems(com.vaadin.flow.data.provider.InMemoryDataProvider<TItem> dataProvider)
    Deprecated.
    does not work so don't use
    ComboBoxBase.setItems(com.vaadin.flow.data.provider.InMemoryDataProvider<TItem> inMemoryDataProvider, com.vaadin.flow.function.SerializableFunction<String,com.vaadin.flow.function.SerializablePredicate<TItem>> filterConverter)
    Sets an in-memory data provider for the combo box to use, taking into account both in-memory filtering from data provider and combo box's text filter.