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 com.vaadin.flow.shared.RegistrationComboBox. addCustomValueSetListener(com.vaadin.flow.component.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(com.vaadin.flow.component.HasValue.ValueChangeListener<com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<ComboBox<T>,T>> listener)Constructs a combo box with a value change listener.ComboBox(String label, com.vaadin.flow.component.HasValue.ValueChangeListener<com.vaadin.flow.component.AbstractField.ComponentValueChangeEvent<ComboBox<T>,T>> listener)Constructs a combo box with the defined label and a value change listener.ComboBox(String label, com.vaadin.flow.component.HasValue.ValueChangeListener<com.vaadin.flow.component.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(com.vaadin.flow.data.provider.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(com.vaadin.flow.data.provider.DataCommunicator<T> dataCommunicator, ComboBox<T> comboBox, com.vaadin.flow.function.SerializableBiConsumer<com.vaadin.flow.function.SerializablePredicate<T>,com.vaadin.flow.function.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.
-