Form
Gather all your input fields in one place, like a survey collecting data, making it easy to organize and submit info.
Basic
A form is a collection of inputs that allows users to submit data to a server, with built-in field error validation.
Installation
If you hit any issues, make sure you check out the installation guide here.
Manual Installation
Sometimes, using the CLI is the way to go, so make sure you install the necessary dependencies for the components you want to use.
Validation
You can validate the form using the isRequired
prop.
Sometimes, server-side errors don't match the client-side validation. You can handle this by using the validationErrors
prop to format them correctly.
Then, in the <TextField />
component, pass the errorMessage
prop like this:
React Hook Form
React Hook Form is a widely-used library for managing forms in React. While it's optimized for working seamlessly with plain HTML input elements, it also supports custom components, including those from React Aria.
The example below shows how to integrate React Hook Form with React Aria Components. It demonstrates how to use the validationBehavior
prop to handle validation errors, and how to use the ref
prop to focus the input after validation. It's taken from the official of react aria components documentation.