validate()
Last updated
Last updated
Performs manual validation of the referenced Form
.
Always favor conventional form submit via Button[type="submit"]
. Form validation is obviously included prior to submit action, so there is no need to explicitly invoke validation. However, there are use cases to refer to manual validation. Please see those below.
There are several use cases when using manual validation may be appropriate, as opposed to conventional form submit flow.
In this case you may want to validation each form independently, and perform a submit based on the accumulated validity of all forms.
You may want to show/hide different UI elements, or perform any subsequent actions based on the validity of a form in the given point of time (apart of submit).
Since validate function returns a Promise, you can use async/await to retrieve the validity of a form in a single line: