Uses of Class
com.vaadin.flow.component.combobox.ComboBoxBase
-
Packages that use ComboBoxBase Package Description com.vaadin.flow.component.combobox com.vaadin.flow.component.combobox.dataview -
-
Uses of ComboBoxBase in com.vaadin.flow.component.combobox
Classes in com.vaadin.flow.component.combobox with type parameters of type ComboBoxBase Modifier and Type Class Description class
ComboBoxBase<TComponent extends ComboBoxBase<TComponent,TItem,TValue>,TItem,TValue>
Provides base functionality for combo box related components, such asComboBox
static class
ComboBoxBase.CustomValueSetEvent<TComponent extends ComboBoxBase<TComponent,?,?>>
Event that is dispatched from a combo box component, if the component allows setting custom values, and the user has entered a non-empty value that does not match any of the existing itemsstatic class
GeneratedVaadinComboBox.CustomValueSetEvent<TComponent extends ComboBoxBase<TComponent,?,?>>
Deprecated.UseComboBoxBase.CustomValueSetEvent
instead.static class
GeneratedVaadinComboBox.FilterChangeEvent<R extends ComboBoxBase<R,?,?>>
Deprecated.This class is not used in any API, and will be removed in a future major version.static class
GeneratedVaadinComboBox.InvalidChangeEvent<R extends ComboBoxBase<R,?,?>>
Deprecated.This class is not used in any API, and will be removed in a future major version.static class
GeneratedVaadinComboBox.OpenedChangeEvent<TComponent extends ComboBoxBase<TComponent,?,?>>
Deprecated.This class is not used in any API, and will be removed in a future major version.static class
GeneratedVaadinComboBox.SelectedItemChangeEvent<TComponent extends ComboBoxBase<TComponent,?,?>>
Deprecated.This class is not used in any API, and will be removed in a future major version.Subclasses of ComboBoxBase in com.vaadin.flow.component.combobox Modifier and Type Class Description class
ComboBox<T>
Combo Box allows the user to choose a value from a filterable list of options presented in an overlay.class
MultiSelectComboBox<TItem>
MultiSelectComboBox allows the user to select one or more values from a filterable list of options presented in an overlay.Constructors in com.vaadin.flow.component.combobox with parameters of type ComboBoxBase Constructor Description ComboBoxDataCommunicator(ComboBoxBase<?,TItem,?> comboBox, DataGenerator<TItem> dataGenerator, ArrayUpdater arrayUpdater, SerializableConsumer<elemental.json.JsonArray> dataUpdater, StateNode stateNode, boolean fetchEnabled)
SelectionPreservingKeyMapper(ComboBoxBase<?,TItem,?> comboBox)
-
Uses of ComboBoxBase in com.vaadin.flow.component.combobox.dataview
Constructors in com.vaadin.flow.component.combobox.dataview with parameters of type ComboBoxBase Constructor Description ComboBoxDataView(DataCommunicator<T> dataCommunicator, ComboBoxBase<?,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, ComboBoxBase<?,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.
-