Uses of Class
com.vaadin.flow.component.combobox.ComboBox
-
Packages that use ComboBox Package Description com.vaadin.flow.component.combobox com.vaadin.flow.component.combobox.dataview -
-
Uses of ComboBox in com.vaadin.flow.component.combobox
Method parameters in com.vaadin.flow.component.combobox with type arguments of type ComboBox Modifier and Type Method Description Registration
ComboBox. addCustomValueSetListener(ComponentEventListener<GeneratedVaadinComboBox.CustomValueSetEvent<ComboBox<T>>> listener)
Adds a listener for the event which is fired when user inputs a string value that does not match any existing items and commits it eg.Constructor parameters in com.vaadin.flow.component.combobox with type arguments of type ComboBox Constructor Description ComboBox(HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<ComboBox<T>,T>> listener)
Constructs a combo box with a value change listener.ComboBox(String label, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<ComboBox<T>,T>> listener)
Constructs a combo box with the defined label and a value change listener.ComboBox(String label, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<ComboBox<T>,T>> listener, T... items)
Constructs a combo box with the defined label, a value change listener and populated with the items in the array. -
Uses of ComboBox in com.vaadin.flow.component.combobox.dataview
Constructors in com.vaadin.flow.component.combobox.dataview with parameters of type ComboBox Constructor Description ComboBoxDataView(DataCommunicator<T> dataCommunicator, ComboBox<T> comboBox)
Creates a new generic data view for ComboBox and verifies the passed data provider is compatible with this data view implementation.ComboBoxListDataView(DataCommunicator<T> dataCommunicator, ComboBox<T> comboBox, SerializableBiConsumer<SerializablePredicate<T>,SerializableComparator<T>> filterOrSortingChangedCallback)
Creates a new instance of ComboBox in-memory data view and verifies the passed data provider is compatible with this data view implementation.
-