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 Validation#

We support HTML5 form validation out of the box, a quick and easy way for form validation.

Edit RCF - Built-in validation

import { useForm } from "react-cool-form";
const App = () => {
const { form } = useForm({
defaultValues: { name: "", email: "", password: "" },
onSubmit: (values) => console.log("onSubmit: ", values),
onError: (errors) => console.log("onError: ", errors),
});
return (
<form ref={form} noValidate>
<input name="name" placeholder="Name" required />
<input name="email" type="email" placeholder="Email" required />
<input
name="password"
type="password"
placeholder="Password"
required
minLength={6}
/>
<input type="submit" />
</form>
);
};

Field-level Validation#

Coming soon...

Form-level Validation#

Coming soon...

Manually Triggering Validation#

Coming soon...

Displaying Error Messages#

Coming 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/methodTiming
onChangeWhenever the value of a field has been changed.
setFieldValueWhenever the value of a field has been set.
setValuesWhenever the values of the formState as been set.
onBlurWhenever a field has been touched. If a validation method has been run by the onChange event, it won't be run again.
onSubmitWhenever a submission attempt is made.
submitWhenever a submission attempt is made manually.
validateFieldManually run field-level validation.
validateFormManually run form-level validation.