Replies: 1 comment 2 replies
-
is |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Currently I'm trying to figure out if there's a consistent way to check if all fields have been updated.
The UX I'm looking for is similar to what's achieved with setting validation to
mode: "onBlur"
, such as in this code sandbox.However what I would like to see is:
One solution that I was considering was having validation mode instead be set to
onChange
, and disabling only when errors withrequired
were found in the list of errors (since ideally hitting submit triggers validation errors like "Invalid email" etc.).Concerns with that being:
react-hook-form
library :/.Beta Was this translation helpful? Give feedback.
All reactions