- Select<T> - Class in com.vaadin.flow.component.select
-
A customizable drop-down select component similar to a native browser select.
- Select() - Constructor for class com.vaadin.flow.component.select.Select
-
Constructs a select.
- Select(T...) - Constructor for class com.vaadin.flow.component.select.Select
-
Constructs a select with the given items.
- setAutofocus(boolean) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setAutofocus(boolean) - Method in class com.vaadin.flow.component.select.Select
-
Sets the select to have focus when the page loads.
- setDataProvider(DataProvider<T, ?>) - Method in class com.vaadin.flow.component.select.Select
-
- setDisabled(boolean) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setEmptySelectionAllowed(boolean) - Method in class com.vaadin.flow.component.select.Select
-
Sets whether the user is allowed to select nothing.
- setEmptySelectionCaption(String) - Method in class com.vaadin.flow.component.select.Select
-
- setErrorMessage(String) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setErrorMessage(String) - Method in class com.vaadin.flow.component.select.Select
-
Sets the error message to show to the user on invalid selection.
- setInvalid(boolean) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setInvalid(boolean) - Method in class com.vaadin.flow.component.select.Select
-
Sets the select to show as invalid state and display error message.
- setItemEnabledProvider(SerializablePredicate<T>) - Method in class com.vaadin.flow.component.select.Select
-
Sets the item enabled predicate for this select.
- setItemLabelGenerator(ItemLabelGenerator<T>) - Method in class com.vaadin.flow.component.select.Select
-
Sets the item label generator.
- setLabel(String) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setLabel(String) - Method in class com.vaadin.flow.component.select.Select
-
Sets the string for the label element.
- setName(String) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setOpened(boolean) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setPlaceholder(String) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setPlaceholder(String) - Method in class com.vaadin.flow.component.select.Select
-
Sets the placeholder hint for the user.
- setReadonly(boolean) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setRenderer(ComponentRenderer<? extends Component, T>) - Method in class com.vaadin.flow.component.select.Select
-
Sets the item renderer for this select group.
- setRequired(boolean) - Method in class com.vaadin.flow.component.select.generated.GeneratedVaadinSelect
-
Description copied from corresponding location in WebComponent:
- setRequiredIndicatorVisible(boolean) - Method in class com.vaadin.flow.component.select.Select
-
NOTE: The required indicator will not be visible, if the
Select.setLabel(String) property is not set for the select.
- setTextRenderer(ItemLabelGenerator<T>) - Method in class com.vaadin.flow.component.select.Select
-
Convenience setter for creating a TextRenderer from the given
function that converts the item to a string.