Package com.vaadin.flow.component.shared
Interface HasClientValidation
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
AbstractNumberField,BigDecimalField,CheckboxGroup,ComboBox,ComboBoxBase,DatePicker,DateTimePicker,EmailField,IntegerField,MultiSelectComboBox,NumberField,PasswordField,RadioButtonGroup,Select,TextArea,TextField,TextFieldBase,TimePicker
Mixin interface for subscribing to the client-side `validated` event from a
component.
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic classAn event fired by the web component whenever it is validated on the client-side. -
Method Summary
Modifier and TypeMethodDescriptiondefault RegistrationaddClientValidatedEventListener(ComponentEventListener<HasClientValidation.ClientValidatedEvent> listener) Adds a listener for thevalidatedevent fired by the web component whenever it is validated on the client-side.
-
Method Details
-
addClientValidatedEventListener
default Registration addClientValidatedEventListener(ComponentEventListener<HasClientValidation.ClientValidatedEvent> listener) Adds a listener for thevalidatedevent fired by the web component whenever it is validated on the client-side.- Parameters:
listener- the listener, not null.- Returns:
- a
Registrationfor removing the event listener.
-