We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.component.shared.
Interface HasClientValidation
-
All Superinterfaces:
All Known Implementing Classes:
public interface HasClientValidation extends Serializable
Mixin interface for subscribing to the client-side `validated` event from a component.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
HasClientValidation.ClientValidatedEvent
An event fired by the web component whenever it is validated on the client-side.
-
Method Summary
All Methods Modifier and Type Method Description default Registration
addClientValidatedEventListener​(ComponentEventListener<HasClientValidation.ClientValidatedEvent> listener)
Adds a listener for the
validated
event fired by the web component whenever it is validated on the client-side.
-
-
-
Method Detail
-
addClientValidatedEventListener
default Registration addClientValidatedEventListener​(ComponentEventListener<HasClientValidation.ClientValidatedEvent> listener)
Adds a listener for the
validated
event fired by the web component whenever it is validated on the client-side.Parameters:
listener
- the listener, not null.Returns:
a
Registration
for removing the event listener.
-
-