Index
All Classes and Interfaces|All Packages|Serialized Form
A
- addCustomValueSetListener(ComponentEventListener<ComboBoxBase.CustomValueSetEvent<TComponent>>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
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. by blurring or pressing the enter-key.
- addFilter(SerializablePredicate<T>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
-
Adds a filter to be applied to all queries.
- addItemCountChangeListener(ComponentEventListener<ItemCountChangeEvent<?>>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
- addItemCountChangeListener(ComponentEventListener<ItemCountChangeEvent<?>>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
- addItemCountChangeListener(ComponentEventListener<ItemCountChangeEvent<?>>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
- addSelectionListener(MultiSelectionListener<MultiSelectComboBox<TItem>, TItem>) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
B
- BOTH - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
-
Field expands horizontally until max-width is reached, then expands vertically and chips wrap.
C
- com.vaadin.flow.component.combobox - package com.vaadin.flow.component.combobox
- com.vaadin.flow.component.combobox.dataview - package com.vaadin.flow.component.combobox.dataview
- ComboBox<T> - Class in com.vaadin.flow.component.combobox
-
Combo Box allows the user to choose a value from a filterable list of options presented in an overlay.
- ComboBox() - Constructor for class com.vaadin.flow.component.combobox.ComboBox
-
Default constructor.
- ComboBox(int) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
-
Creates an empty combo box with the defined page size for lazy loading.
- ComboBox(HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<ComboBox<T>, T>>) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
-
Constructs a combo box with a value change listener.
- ComboBox(String) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
-
Creates an empty combo box with the defined label.
- ComboBox(String, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<ComboBox<T>, T>>) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
-
Constructs a combo box with the defined label and a value change listener.
- ComboBox(String, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<ComboBox<T>, T>>, T...) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
-
Constructs a combo box with the defined label, a value change listener and populated with the items in the array.
- ComboBox(String, Collection<T>) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
-
Creates a combo box with the defined label and populated with the items in the collection.
- ComboBox(String, T...) - Constructor for class com.vaadin.flow.component.combobox.ComboBox
-
Creates a combo box with the defined label and populated with the items in the array.
- ComboBox.ComboBoxI18n - Class in com.vaadin.flow.component.combobox
-
The internationalization properties for
ComboBox. - ComboBox.FetchItemsCallback<T> - Interface in com.vaadin.flow.component.combobox
-
A callback method for fetching items.
- ComboBox.ItemFilter<T> - Interface in com.vaadin.flow.component.combobox
-
Predicate to check
ComboBoxitems against user typed strings. - ComboBoxBase<TComponent extends ComboBoxBase<TComponent,
TItem, TValue>, TItem, TValue> - Class in com.vaadin.flow.component.combobox -
Provides base functionality for combo box related components, such as
ComboBox - ComboBoxBase(String, TValue, Class<TValueProperty>, SerializableBiFunction<TComponent, TValueProperty, TValue>, SerializableBiFunction<TComponent, TValue, TValueProperty>) - Constructor for class com.vaadin.flow.component.combobox.ComboBoxBase
-
Constructs a new ComboBoxBase instance
- ComboBoxBase.CustomValueSetEvent<TComponent extends ComboBoxBase<TComponent,
?, ?>> - Class in com.vaadin.flow.component.combobox -
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 items
- ComboBoxBaseI18n - Interface in com.vaadin.flow.component.combobox
-
The internationalization properties for
ComboBoxBase. - ComboBoxDataCommunicator<TItem> - Class in com.vaadin.flow.component.combobox
-
Customized data communicator that uses a custom key mapper for preserving keys of selected items when using lazy-loading.
- ComboBoxDataCommunicator(ComboBoxBase<?, TItem, ?>, DataGenerator<TItem>, ArrayUpdater, SerializableConsumer<JsonArray>, StateNode, boolean) - Constructor for class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator
- ComboBoxDataCommunicator.SelectionPreservingKeyMapper<TItem> - Class in com.vaadin.flow.component.combobox
-
Customized key mapper that does not remove key for an item as long as it is selected.
- ComboBoxDataView<T> - Class in com.vaadin.flow.component.combobox.dataview
-
Implementation of generic data view for ComboBox.
- ComboBoxDataView(DataCommunicator<T>, ComboBoxBase<?, T, ?>) - Constructor for class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
-
Creates a new generic data view for ComboBox and verifies the passed data provider is compatible with this data view implementation.
- ComboBoxI18n() - Constructor for class com.vaadin.flow.component.combobox.ComboBox.ComboBoxI18n
- ComboBoxLazyDataView<T> - Class in com.vaadin.flow.component.combobox.dataview
-
Data view implementation for ComboBox with lazy data fetching.
- ComboBoxLazyDataView(DataCommunicator<T>, Component) - Constructor for class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
-
Creates a new lazy data view for ComboBox and verifies the passed data provider is compatible with this data view implementation.
- ComboBoxListDataView<T> - Class in com.vaadin.flow.component.combobox.dataview
-
Data view implementation for ComboBox with in-memory list data.
- ComboBoxListDataView(DataCommunicator<T>, ComboBoxBase<?, T, ?>, SerializableBiConsumer<SerializablePredicate<T>, SerializableComparator<T>>) - Constructor for class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
-
Creates a new instance of ComboBox in-memory data view and verifies the passed data provider is compatible with this data view implementation.
- ComboBoxVariant - Enum Class in com.vaadin.flow.component.combobox
-
Set of theme variants applicable for
vaadin-combo-boxcomponent. - CustomValueSetEvent(TComponent, boolean, String) - Constructor for class com.vaadin.flow.component.combobox.ComboBoxBase.CustomValueSetEvent
F
- fetchItems(String, int, int) - Method in interface com.vaadin.flow.component.combobox.ComboBox.FetchItemsCallback
-
Returns a stream of items that match the given filter, limiting the results with given offset and limit.
G
- generateClassName(TItem) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Generates a string class name for a data item using the current item class name generator
- generateLabel(TItem) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Generates a string label for a data item using the current item label generator
- getAriaLabel() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- getAriaLabelledBy() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- getAutoExpand() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Gets the behavior of the component when not all selected items can be displayed as chips within the current field width.
- getCleared() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
The text that is announced by screen readers when the clear button is clicked.
- getDataCommunicator() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Accesses the data communicator that is managed by the data controller
- getDataController() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Accesses the data controller that is managing data communication with the web component
- getDataGenerator() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Accesses the data generator that is managed by the data controller
- getDataProvider() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Gets the data provider used by this ComboBox.
- getDefaultValidator() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- getDeselected() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
The text that is announced by screen readers when an item is removed from the selection.
- getDetail() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase.CustomValueSetEvent
- getEmptyValue() - Method in class com.vaadin.flow.component.combobox.ComboBox
- getExpandHorizontally() - Method in enum class com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
-
Gets whether to expand horizontally.
- getExpandVertically() - Method in enum class com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
-
Gets whether to expand vertically.
- getFilter() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Filtering string the user has typed into the input field.
- getFocused() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
The text that is announced by screen readers when a chip is focused.
- getGenericDataView() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Gets the generic data view for the ComboBox.
- getI18n() - Method in class com.vaadin.flow.component.combobox.ComboBox
-
Gets the internationalization object previously set for this component.
- getI18n() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Gets the internationalization object previously set for this component.
- getI18n() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Gets the internationalization object previously set for this component.
- getItem(int) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
-
Gets the item at the given index from the data available in the ComboBox's server-side.
- getItem(int) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
-
Gets the item at the given index from the data available in the ComboBox's server-side.
- getItemClassNameGenerator() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Gets the item class name generator that is used for generating CSS class names for the dropdown items in the ComboBox.
- getItemCount() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
- getItemLabelGenerator() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Gets the item label generator that is used to produce the strings shown in the combo box for each item.
- getItems() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
-
Gets the items available on the ComboBox's server-side.
- getItems() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
-
Gets the items available on the ComboBox's server-side.
- getItems() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
-
Gets the items available on the ComboBox's server-side.
- getKeyMapper() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Accesses the key mapper that is managed by the data controller
- getLazyDataView() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Gets the lazy data view for the ComboBox.
- getListDataView() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Gets the list data view for the ComboBox.
- getPageSize() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Gets the page size, which is the number of items fetched at a time from the data provider.
- getPattern() - Method in class com.vaadin.flow.component.combobox.ComboBox
-
The pattern to validate the input with
- getRenderManager() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Accesses the render manager that is managing the custom renderer
- getRequiredErrorMessage() - Method in class com.vaadin.flow.component.combobox.ComboBox.ComboBoxI18n
-
Gets the error message displayed when the field is required but empty.
- getRequiredErrorMessage() - Method in interface com.vaadin.flow.component.combobox.ComboBoxBaseI18n
-
Gets the error message displayed when the field is required but empty.
- getRequiredErrorMessage() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
Gets the error message displayed when the field is required but empty.
- getSelected() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
The text that is announced by screen readers when an item is added to the selection.
- getSelectedItems() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
- getSupportedDataProviderType() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
- getTotal() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
The text that is announced by screen readers to inform about the total number of selected items.
- getValue() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Gets the value of the component, which is a set of selected items.
- getVariantName() - Method in enum class com.vaadin.flow.component.combobox.ComboBoxVariant
-
Gets the variant name.
- getVariantName() - Method in enum class com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
-
Gets the variant name.
H
- HORIZONTAL - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
-
Field expands horizontally until max-width is reached, then collapses to overflow chip.
I
- isAllowCustomValue() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
If
true, the user can input string values that do not match to any existing item labels, which will fire aComboBoxBase.CustomValueSetEvent. - isAutofocus() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Whether the component should automatically receive focus when the page loads.
- isKeepFilter() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Gets whether the filter is kept after selecting items.
- isOpened() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Whether the dropdown is opened or not.
- isRequired() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- isRequiredIndicatorVisible() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Gets whether the user is required to provide a value.
- isRequiredIndicatorVisible() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Gets whether the user is required to provide a value.
- isSelected(T) - Method in class com.vaadin.flow.component.combobox.ComboBox
- isSelected(TItem) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Whether the item is currently selected in the combo box.
- isSelected(TItem) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
- isSelectedItemsOnTop() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Gets whether selected items are grouped at the top of the overlay.
K
- key(TItem) - Method in class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator.SelectionPreservingKeyMapper
L
- LUMO_ALIGN_CENTER - Enum constant in enum class com.vaadin.flow.component.combobox.ComboBoxVariant
- LUMO_ALIGN_CENTER - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
- LUMO_ALIGN_LEFT - Enum constant in enum class com.vaadin.flow.component.combobox.ComboBoxVariant
- LUMO_ALIGN_LEFT - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
- LUMO_ALIGN_RIGHT - Enum constant in enum class com.vaadin.flow.component.combobox.ComboBoxVariant
- LUMO_ALIGN_RIGHT - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
- LUMO_HELPER_ABOVE_FIELD - Enum constant in enum class com.vaadin.flow.component.combobox.ComboBoxVariant
- LUMO_HELPER_ABOVE_FIELD - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
- LUMO_SMALL - Enum constant in enum class com.vaadin.flow.component.combobox.ComboBoxVariant
- LUMO_SMALL - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
M
- MATERIAL_ALWAYS_FLOAT_LABEL - Enum constant in enum class com.vaadin.flow.component.combobox.ComboBoxVariant
- MATERIAL_ALWAYS_FLOAT_LABEL - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
- MultiSelectComboBox<TItem> - Class in com.vaadin.flow.component.combobox
-
MultiSelectComboBox allows the user to select one or more values from a filterable list of options presented in an overlay.
- MultiSelectComboBox() - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Default constructor.
- MultiSelectComboBox(int) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Creates an empty combo box with the defined page size for lazy loading.
- MultiSelectComboBox(HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>>) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Constructs a combo box with a value change listener.
- MultiSelectComboBox(String) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Creates an empty combo box with the defined label.
- MultiSelectComboBox(String, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>>) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Constructs a combo box with the defined label and a value change listener.
- MultiSelectComboBox(String, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<MultiSelectComboBox<TItem>, Set<TItem>>>, TItem...) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Constructs a combo box with the defined label, a value change listener and populated with the items in the array.
- MultiSelectComboBox(String, Collection<TItem>) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Creates a combo box with the defined label and populated with the items in the collection.
- MultiSelectComboBox(String, TItem...) - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Creates a combo box with the defined label and populated with the items in the array.
- MultiSelectComboBox.AutoExpandMode - Enum Class in com.vaadin.flow.component.combobox
-
Defines possible behavior of the component when not all selected items can be displayed as chips within the current field width.
- MultiSelectComboBoxI18n - Class in com.vaadin.flow.component.combobox
-
Class for localization of the
MultiSelectComboBox - MultiSelectComboBoxI18n() - Constructor for class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
- MultiSelectComboBoxVariant - Enum Class in com.vaadin.flow.component.combobox
-
Set of theme variants applicable for
vaadin-multi-select-combo-boxcomponent.
N
- NONE - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
-
Field does not expand and collapses to overflow chip.
- notifySelectionChanged() - Method in class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator
O
- onAttach(AttachEvent) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- onAttach(AttachEvent) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
- onDetach(DetachEvent) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
P
- purgeItems() - Method in class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator.SelectionPreservingKeyMapper
R
- refreshValue() - Method in class com.vaadin.flow.component.combobox.ComboBox
- refreshValue() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Refresh value / selection of the web component after changes that might affect the presentation / rendering of items
- refreshValue() - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
- remove(TItem) - Method in class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator.SelectionPreservingKeyMapper
- removeFilters() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
-
Removes all in-memory filters set or added.
- runBeforeClientResponse(SerializableConsumer<UI>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Helper for running a command in the before client response hook
S
- SelectionPreservingKeyMapper(ComboBoxBase<?, TItem, ?>) - Constructor for class com.vaadin.flow.component.combobox.ComboBoxDataCommunicator.SelectionPreservingKeyMapper
- setAllowCustomValue(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Enables or disables the component firing events for custom string input.
- setAriaLabel(String) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- setAriaLabelledBy(String) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- setAutoExpand(MultiSelectComboBox.AutoExpandMode) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Sets the behavior of the component when not all selected items can be displayed as chips within the current field width.
- setAutofocus(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets the whether the component should automatically receive focus when the page loads.
- setClassNameGenerator(SerializableFunction<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets the function that is used for generating CSS class names for the dropdown items in the ComboBox.
- setCleared(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
Sets the text that is announced by screen readers when the clear button is clicked.
- setDataProvider(ComboBox.FetchItemsCallback<TItem>, SerializableFunction<String, Integer>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets a CallbackDataProvider using the given fetch items callback and a size callback.
- setDataProvider(DataProvider<TItem, C>, SerializableFunction<String, C>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets a generic data provider for the ComboBox to use.
- setDeselected(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
Sets the text that is announced by screen readers when an item is removed from the selection.
- setFilter(SerializablePredicate<T>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
-
Sets a filter to be applied to the data.
- setFilter(String) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets the filter string for the filter input.
- setFocused(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
Sets the text that is announced by screen readers when a chip is focused.
- setI18n(ComboBox.ComboBoxI18n) - Method in class com.vaadin.flow.component.combobox.ComboBox
-
Sets the internationalization object for this component.
- setI18n(ComboBoxBaseI18n) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets the internationalization object for this component.
- setI18n(MultiSelectComboBoxI18n) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Sets the internationalization object for this component.
- setIdentifierProvider(IdentifierProvider<T>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxDataView
- setIdentifierProvider(IdentifierProvider<T>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
- setIdentifierProvider(IdentifierProvider<T>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxListDataView
- setItemCountCallback(CallbackDataProvider.CountCallback<T, String>) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
-
Sets a callback that the combo box uses to get the exact item count in the backend.
- setItemCountEstimate(int) - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
- setItemCountFromDataProvider() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
- setItemCountUnknown() - Method in class com.vaadin.flow.component.combobox.dataview.ComboBoxLazyDataView
- setItemLabelGenerator(ItemLabelGenerator<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets the item label generator that is used to produce the strings shown in the combo box for each item.
- setItems(ComboBox.ItemFilter<TItem>, ListDataProvider<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets a ListDataProvider for this combo box and a filtering function for defining which items are displayed when user types into the combo box.
- setItems(ComboBox.ItemFilter<TItem>, Collection<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets the data items of this combo box and a filtering function for defining which items are displayed when user types into the combo box.
- setItems(ComboBox.ItemFilter<TItem>, TItem...) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets the data items of this combo box and a filtering function for defining which items are displayed when user types into the combo box.
- setItems(BackEndDataProvider<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- setItems(CallbackDataProvider.FetchCallback<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Supply items lazily with a callback from a backend.
- setItems(CallbackDataProvider.FetchCallback<TItem, String>, CallbackDataProvider.CountCallback<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Supply items lazily with callbacks: the first one fetches the items based on offset, limit and an optional filter, the second provides the exact count of items in the backend.
- setItems(DataProvider<TItem, String>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- setItems(InMemoryDataProvider<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Deprecated.does not work so don't use
- setItems(InMemoryDataProvider<TItem>, SerializableFunction<String, SerializablePredicate<TItem>>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
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.
- setItems(ListDataProvider<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- setItems(Collection<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- setItemsWithFilterConverter(CallbackDataProvider.FetchCallback<TItem, C>, CallbackDataProvider.CountCallback<TItem, C>, SerializableFunction<String, C>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Supply items lazily with callbacks: the first one fetches the items based on offset, limit and an optional filter, the second provides the exact count of items in the backend.
- setItemsWithFilterConverter(CallbackDataProvider.FetchCallback<TItem, C>, SerializableFunction<String, C>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Supply items lazily with a callback from a backend, using custom filter type.
- setKeepFilter(boolean) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Enables or disables keeping the filter after selecting items.
- setManualValidation(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- setOpened(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets whether the dropdown should be opened or not.
- setOverlayWidth(float, Unit) - Method in class com.vaadin.flow.component.combobox.ComboBox
-
Sets the dropdown overlay width.
- setOverlayWidth(float, Unit) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Sets the dropdown overlay width.
- setOverlayWidth(String) - Method in class com.vaadin.flow.component.combobox.ComboBox
-
Sets the dropdown overlay width.
- setOverlayWidth(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Sets the dropdown overlay width.
- setPageSize(int) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets the page size, which is the number of items requested at a time from the data provider.
- setPattern(String) - Method in class com.vaadin.flow.component.combobox.ComboBox
-
Sets the pattern with which to validate the input
- setRenderer(Renderer<TItem>) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets the Renderer responsible to render the individual items in the list of possible choices of the ComboBox.
- setRequired(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
- setRequiredErrorMessage(String) - Method in class com.vaadin.flow.component.combobox.ComboBox.ComboBoxI18n
-
Sets the error message to display when the field is required but empty.
- setRequiredErrorMessage(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
Sets the error message to display when the field is required but empty.
- setRequiredIndicatorVisible(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBox
- setRequiredIndicatorVisible(boolean) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Sets whether the user is required to provide a value.
- setRequiredIndicatorVisible(boolean) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Sets whether the user is required to provide a value.
- setSelected(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
Sets the text that is announced by screen readers when an item is added to the selection.
- setSelectedItemsOnTop(boolean) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Enables or disables grouping of the selected items at the top of the overlay.
- setTotal(String) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBoxI18n
-
Sets the text that is announced by screen readers to inform about the total number of selected items.
- setValue(Collection<TItem>) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Sets the value of the component, which is a set of selected items.
- setValue(Set<TItem>) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Sets the value of the component, which is a set of selected items.
- setValue(TItem...) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
-
Sets the value of the component, which is a set of selected items.
- setValue(TValue) - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
T
- test(T, String) - Method in interface com.vaadin.flow.component.combobox.ComboBox.ItemFilter
U
- updateSelection(Set<TItem>, Set<TItem>) - Method in class com.vaadin.flow.component.combobox.MultiSelectComboBox
V
- validate() - Method in class com.vaadin.flow.component.combobox.ComboBoxBase
-
Validates the current value against the constraints and sets the
invalidproperty and theerrorMessageproperty based on the result. - valueOf(String) - Static method in enum class com.vaadin.flow.component.combobox.ComboBoxVariant
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
-
Returns the enum constant of this class with the specified name.
- valueOf(String) - Static method in enum class com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
-
Returns the enum constant of this class with the specified name.
- values() - Static method in enum class com.vaadin.flow.component.combobox.ComboBoxVariant
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
-
Returns an array containing the constants of this enum class, in the order they are declared.
- values() - Static method in enum class com.vaadin.flow.component.combobox.MultiSelectComboBoxVariant
-
Returns an array containing the constants of this enum class, in the order they are declared.
- VERTICAL - Enum constant in enum class com.vaadin.flow.component.combobox.MultiSelectComboBox.AutoExpandMode
-
Field expands vertically and chips wrap.
All Classes and Interfaces|All Packages|Serialized Form