com.vaadin.flow.component.combobox.
Class MultiSelectComboBox<TItem>
Type Parameters:
TItem
- the type of the items to be selectable from the combo box
All Implemented Interfaces:
AttachNotifier
, BlurNotifier<MultiSelectComboBox<TItem>>
, DetachNotifier
, Focusable<MultiSelectComboBox<TItem>>
, FocusNotifier<MultiSelectComboBox<TItem>>
, HasElement
, HasEnabled
, HasHelper
, HasLabel
, HasSize
, HasStyle
, HasTheme
, HasValidation
, HasValue<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>,
, HasValueAndElement<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>,
, HasAllowedCharPattern
, HasAutoOpen
, HasClearButton
, HasClientValidation
, HasOverlayClassName
, HasThemeVariant<MultiSelectComboBoxVariant>
, HasTooltip
, HasValidationProperties
, HasValidator<Set<TItem>>
, HasDataView<TItem,
, HasLazyDataView<TItem,
, HasListDataView<TItem,
, MultiSelect<MultiSelectComboBox<TItem>,
, Serializable
MultiSelectComboBox allows the user to select one or more values from a
filterable list of options presented in an overlay. Compared to
ComboBox
, MultiSelectComboBox allows to select multiple values.
MultiSelectComboBox supports lazy loading. This means that when using large
data sets, items are requested from the server one "page" at a time when the
user scrolls down the overlay. The number of items in one page is by default
50, and can be changed with ComboBoxBase.setPageSize(int)
.
MultiSelectComboBox can do filtering either in the browser or in the server.
When MultiSelectComboBox has only a relatively small set of items, the
filtering will happen in the browser, allowing smooth user-experience. When
the size of the data set is larger than the pageSize
, the
webcomponent doesn't necessarily have all the data available, and it will
make requests to the server to handle the filtering. Also, if you have
defined custom filtering logic, with eg.
ComboBoxBase.setItems(ComboBox.ItemFilter, Collection)
, filtering will happen in
the server. To enable client-side filtering with larger data sets, you can
override the pageSize
to be bigger than the size of your data set.
However, then the full data set will be sent to the client immediately, and
you will lose the benefits of lazy loading.
Author:
Vaadin Ltd
See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class com.vaadin.flow.component.combobox.ComboBoxBase
ComboBoxBase.CustomValueSetEvent<TComponent extends ComboBoxBase<TComponent,
?, ?>> Nested classes/interfaces inherited from class com.vaadin.flow.component.AbstractField
AbstractField.ComponentValueChangeEvent<C extends Component,
V> Nested classes/interfaces inherited from interface com.vaadin.flow.component.BlurNotifier
BlurNotifier.BlurEvent<C extends Component>
Nested classes/interfaces inherited from interface com.vaadin.flow.component.FocusNotifier
FocusNotifier.FocusEvent<C extends Component>
Nested classes/interfaces inherited from interface com.vaadin.flow.component.shared.HasClientValidation
HasClientValidation.ClientValidatedEvent
Nested classes/interfaces inherited from interface com.vaadin.flow.component.HasValue
HasValue.ValueChangeEvent<V>, HasValue.ValueChangeListener<E extends HasValue.ValueChangeEvent<?>>
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.
MultiSelectComboBox
(int pageSize) Creates an empty combo box with the defined page size for lazy loading.
MultiSelectComboBox
(HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>> listener) Constructs a combo box with a value change listener.
MultiSelectComboBox
(String label) Creates an empty combo box with the defined label.
MultiSelectComboBox
(String label, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>> listener) Constructs a combo box with the defined label and a value change listener.
MultiSelectComboBox
(String label, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>> listener, TItem... items) Constructs a combo box with the defined label, a value change listener and populated with the items in the array.
MultiSelectComboBox
(String label, Collection<TItem> items) Creates a combo box with the defined label and populated with the items in the collection.
MultiSelectComboBox
(String label, TItem... items) Creates a combo box with the defined label and populated with the items in the array.
-
Method Summary
Modifier and TypeMethodDescriptionAdds a selection listener that will be called when the selection is changed either by the user or programmatically.
getI18n()
Gets the internationalization object previously set for this component.
Returns an immutable set of the currently selected items.
getValue()
Gets the value of the component, which is a set of selected items.
boolean
isSelected
(TItem item) Whether the item is currently selected in the combo box.
protected void
onAttach
(AttachEvent attachEvent) Called when the component is attached to a UI.
protected void
Refresh value / selection of the web component after changes that might affect the presentation / rendering of items
void
Sets the internationalization properties for this component.
void
setValue
(Collection<TItem> items) Sets the value of the component, which is a set of selected items.
void
Sets the value of the component, which is a set of selected items.
final void
Sets the value of the component, which is a set of selected items.
void
updateSelection
(Set<TItem> addedItems, Set<TItem> removedItems) Updates the selection by adding and removing the given items from it.
Methods inherited from class com.vaadin.flow.component.combobox.ComboBoxBase
addCustomValueSetListener, addValidationStatusChangeListener, generateLabel, getDataCommunicator, getDataController, getDataGenerator, getDataProvider, getFilter, getGenericDataView, getItemLabelGenerator, getKeyMapper, getLazyDataView, getListDataView, getPageSize, getPlaceholder, getRenderManager, isAllowCustomValue, isAutofocus, isOpened, isRequired, onDetach, runBeforeClientResponse, setAllowCustomValue, setAutofocus, setFilter, setItemLabelGenerator, setItems, setItems, setItems, setItems, setItems, setItems, setItems, setItems, setItems, setItems, setItems, setItemsWithFilterConverter, setItemsWithFilterConverter, setOpened, setPageSize, setPlaceholder, setRenderer, setRequired, validate
Methods inherited from class com.vaadin.flow.component.AbstractSinglePropertyField
getSynchronizationRegistration, hasValidValue, setPresentationValue, setSynchronizedEvent
Methods inherited from class com.vaadin.flow.component.AbstractField
addValueChangeListener, getEmptyValue, isEmpty, setModelValue, valueEquals
Methods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getChildren, getElement, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onEnabledStateChanged, removeFromParent, scrollIntoView, scrollIntoView, set, setElement, setId, setVisible
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListener
Methods inherited from interface com.vaadin.flow.component.BlurNotifier
addBlurListener
Methods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListener
Methods inherited from interface com.vaadin.flow.component.Focusable
addFocusShortcut, blur, focus, getTabIndex, setTabIndex
Methods inherited from interface com.vaadin.flow.component.FocusNotifier
addFocusListener
Methods inherited from interface com.vaadin.flow.component.shared.HasAllowedCharPattern
getAllowedCharPattern, setAllowedCharPattern
Methods inherited from interface com.vaadin.flow.component.shared.HasAutoOpen
isAutoOpen, setAutoOpen
Methods inherited from interface com.vaadin.flow.component.shared.HasClearButton
isClearButtonVisible, setClearButtonVisible
Methods inherited from interface com.vaadin.flow.component.shared.HasClientValidation
addClientValidatedEventListener
Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
Methods inherited from interface com.vaadin.flow.component.HasEnabled
isEnabled, setEnabled
Methods inherited from interface com.vaadin.flow.component.HasHelper
getHelperComponent, getHelperText, setHelperComponent, setHelperText
Methods inherited from interface com.vaadin.flow.data.provider.HasListDataView
setItems
Methods inherited from interface com.vaadin.flow.component.shared.HasOverlayClassName
getOverlayClassName, setOverlayClassName
Methods inherited from interface com.vaadin.flow.component.HasSize
getHeight, getHeightUnit, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getWidth, getWidthUnit, setHeight, setHeight, setHeightFull, setMaxHeight, setMaxHeight, setMaxWidth, setMaxWidth, setMinHeight, setMinHeight, setMinWidth, setMinWidth, setSizeFull, setSizeUndefined, setWidth, setWidth, setWidthFull
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
Methods inherited from interface com.vaadin.flow.component.HasTheme
addThemeName, addThemeNames, getThemeName, getThemeNames, hasThemeName, removeThemeName, removeThemeNames, setThemeName, setThemeName
Methods inherited from interface com.vaadin.flow.component.shared.HasThemeVariant
addThemeVariants, removeThemeVariants
Methods inherited from interface com.vaadin.flow.component.shared.HasTooltip
getTooltip, setTooltipText
Methods inherited from interface com.vaadin.flow.component.shared.HasValidationProperties
getErrorMessage, isInvalid, setErrorMessage, setInvalid
Methods inherited from interface com.vaadin.flow.data.binder.HasValidator
getDefaultValidator
Methods inherited from interface com.vaadin.flow.component.HasValue
addValueChangeListener, clear, getOptionalValue, isEmpty
Methods inherited from interface com.vaadin.flow.component.HasValueAndElement
isReadOnly, isRequiredIndicatorVisible, setReadOnly, setRequiredIndicatorVisible
Methods inherited from interface com.vaadin.flow.data.selection.MultiSelect
deselect, deselect, deselectAll, getEmptyValue, select, select
-
Constructor Details
-
MultiSelectComboBox
public MultiSelectComboBox()Default constructor. Creates an empty combo box.
-
MultiSelectComboBox
public MultiSelectComboBox(int pageSize) Creates an empty combo box with the defined page size for lazy loading.
The default page size is 50.
The page size is also the largest number of items that can support client-side filtering. If you provide more items than the page size, the component has to fall back to server-side filtering.
Parameters:
pageSize
- the amount of items to request at a time for lazy loadingSee Also:
-
MultiSelectComboBox
Creates an empty combo box with the defined label.
Parameters:
label
- the label describing the combo boxSee Also:
-
MultiSelectComboBox
Creates a combo box with the defined label and populated with the items in the collection.
Parameters:
label
- the label describing the combo boxitems
- the items to be shown in the list of the combo boxSee Also:
-
MultiSelectComboBox
Creates a combo box with the defined label and populated with the items in the array.
Parameters:
label
- the label describing the combo boxitems
- the items to be shown in the list of the combo boxSee Also:
-
MultiSelectComboBox
public MultiSelectComboBox(HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>> listener) Constructs a combo box with a value change listener.
Parameters:
listener
- the value change listener to addSee Also:
-
MultiSelectComboBox
public MultiSelectComboBox(String label, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>> listener) Constructs a combo box with the defined label and a value change listener.
Parameters:
label
- the label describing the combo boxlistener
- the value change listener to addSee Also:
-
MultiSelectComboBox
@SafeVarargs public MultiSelectComboBox(String label, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>> listener, TItem... items) Constructs a combo box with the defined label, a value change listener and populated with the items in the array.
Parameters:
label
- the label describing the combo boxlistener
- the value change listener to additems
- the items to be shown in the list of the combo boxSee Also:
-
-
Method Details
-
onAttach
Description copied from class:
Component
Called when the component is attached to a UI.
The default implementation does nothing.
This method is invoked before the
AttachEvent
is fired for the component.Overrides:
onAttach
in classComboBoxBase<MultiSelectComboBox<TItem>,
TItem, Set<TItem>> Parameters:
attachEvent
- the attach event -
getValue
Gets the value of the component, which is a set of selected items.
The returned set is immutable and can not be modified. Use
MultiSelect.select(Object[])
orMultiSelect.deselect(Object[])
to add or remove individual items.Specified by:
getValue
in interfaceHasValue<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>,
Set<TItem>>, Set<TItem>> Specified by:
getValue
in interfaceMultiSelect<MultiSelectComboBox<TItem>,
TItem> Overrides:
getValue
in classAbstractField<MultiSelectComboBox<TItem>,
Set<TItem>> Returns:
an unmodifiable set of selected items
-
setValue
Sets the value of the component, which is a set of selected items.
Note that it is allowed to pass
null
as value to clear the selection, but that an empty set will be stored as value instead.Specified by:
setValue
in interfaceHasValue<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>,
Set<TItem>>, Set<TItem>> Specified by:
setValue
in interfaceMultiSelect<MultiSelectComboBox<TItem>,
TItem> Overrides:
setValue
in classComboBoxBase<MultiSelectComboBox<TItem>,
TItem, Set<TItem>> Parameters:
value
- the new value -
setValue
Sets the value of the component, which is a set of selected items. As each item can only be selected once, duplicates in the provided items will be removed. Passing no items will result in an empty selection.
Parameters:
items
- the new value -
setValue
Sets the value of the component, which is a set of selected items. As each item can only be selected once, duplicates in the provided items will be removed. Passing no items will result in an empty selection.
Parameters:
items
- the new value -
refreshValue
protected void refreshValue()Description copied from class:
ComboBoxBase
Refresh value / selection of the web component after changes that might affect the presentation / rendering of items
Specified by:
refreshValue
in classComboBoxBase<MultiSelectComboBox<TItem>,
TItem, Set<TItem>> -
isSelected
Description copied from class:
ComboBoxBase
Whether the item is currently selected in the combo box.
Specified by:
isSelected
in interfaceMultiSelect<MultiSelectComboBox<TItem>,
TItem> Specified by:
isSelected
in classComboBoxBase<MultiSelectComboBox<TItem>,
TItem, Set<TItem>> Parameters:
item
- the item to checkReturns:
true
if the item is selected,false
otherwise -
getSelectedItems
Description copied from interface:
MultiSelect
Returns an immutable set of the currently selected items. It is safe to invoke other
SelectionModel
methods while iterating over the set.Implementation note: the iteration order of the items in the returned set should be well-defined and documented by the implementing class.
Specified by:
getSelectedItems
in interfaceMultiSelect<MultiSelectComboBox<TItem>,
TItem> Returns:
the items in the current selection, not
null
-
addSelectionListener
public Registration addSelectionListener(MultiSelectionListener<MultiSelectComboBox<TItem>, TItem> listener) Description copied from interface:
MultiSelect
Adds a selection listener that will be called when the selection is changed either by the user or programmatically.
Specified by:
addSelectionListener
in interfaceMultiSelect<MultiSelectComboBox<TItem>,
TItem> Parameters:
listener
- the value change listener, notnull
Returns:
a registration for the listener
-
updateSelection
Description copied from interface:
MultiSelect
Updates the selection by adding and removing the given items from it.
If all the added items were already selected and the removed items were not selected, this is a NO-OP.
Duplicate items (in both add and remove sets) are ignored.
Specified by:
updateSelection
in interfaceMultiSelect<MultiSelectComboBox<TItem>,
TItem> Parameters:
addedItems
- the items to add, notnull
removedItems
- the items to remove, notnull
-
getI18n
Gets the internationalization object previously set for this component.
Note: updating the i18n object that is returned from this method will not update the component, unless it is set again using
setI18n(MultiSelectComboBoxI18n)
Returns:
the i18n object. It will be
null
, if it has not been set previously -
setI18n
Sets the internationalization properties for this component.
Parameters:
i18n
- the internationalized properties, notnull
-