You're viewing an older version of Vaadin JavaDoc. Please see version 24.7.0 for the latest.
com.vaadin.flow.component.textfield.

Class EmailField

All Implemented Interfaces:

AttachNotifier, BlurNotifier<EmailField>, CompositionNotifier, DetachNotifier, Focusable<EmailField>, FocusNotifier<EmailField>, HasAriaLabel, HasElement, HasEnabled, HasHelper, HasLabel, HasPlaceholder, HasSize, HasStyle, HasTheme, HasValidation, HasValue<AbstractField.ComponentValueChangeEvent<EmailField,String>,String>, HasValueAndElement<AbstractField.ComponentValueChangeEvent<EmailField,String>,String>, InputNotifier, KeyNotifier, HasAllowedCharPattern, HasClearButton, HasClientValidation, HasPrefix, HasSuffix, HasThemeVariant<TextFieldVariant>, HasTooltip, HasValidationProperties, InputField<AbstractField.ComponentValueChangeEvent<EmailField,String>,String>, HasAutocapitalize, HasAutocomplete, HasAutocorrect, HasPrefixAndSuffix, HasValidator<String>, HasValueChangeMode, Serializable

@Tag("vaadin-email-field") @NpmPackage(value="@vaadin/polymer-legacy-adapter",version="24.4.0-alpha3") @NpmPackage(value="@vaadin/email-field",version="24.4.0-alpha3") @JsModule("@vaadin/polymer-legacy-adapter/style-modules.js") @JsModule("@vaadin/email-field/src/vaadin-email-field.js") public class EmailField extends TextFieldBase<EmailField,String> implements HasAllowedCharPattern, HasThemeVariant<TextFieldVariant>

Email Field is an extension of Text Field that only accepts email addresses as input. If the given address is invalid, the field is highlighted in red and an error message appears underneath the input. The validity of the email addresses is checked according to the RFC 5322 standard, which includes the format for email addresses. The component also supports supplying additional validation criteria using a regular expression (see setPattern(String)). These extra validation criteria can be used, for example, to require a specific email domain.

Author:

Vaadin Ltd.

See Also: