Validation Guide
React Cool Form supports a wide range of synchronous and asynchronous validation strategies for built-in, field-level, and form-level validations to cover all the cases that you need.
#
Built-in ValidationWe support HTML5 form validation out of the box, a quick and easy way for form validation.
#
Field-level ValidationComing soon...
#
Form-level ValidationComing soon...
#
Manually Triggering ValidationComing soon...
#
Displaying Error MessagesComing soon...
#
When Does Validation Run?By default, React Cool Form runs validation methods as below, you can tell React Cool Form when to run validation by the validateOnChange and/or validateOnBlur depends on your needs.
Event/method | Timing |
---|---|
onChange | Whenever the value of a field has been changed. |
setFieldValue | Whenever the value of a field has been set. |
setValues | Whenever the values of the formState as been set. |
onBlur | Whenever a field has been touched. If a validation method has been run by the onChange event, it won't be run again. |
onSubmit | Whenever a submission attempt is made. |
submit | Whenever a submission attempt is made manually. |
validateField | Manually run field-level validation. |
validateForm | Manually run form-level validation. |