-
Notifications
You must be signed in to change notification settings - Fork 939
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to validate that a field is the same as another? #97
Comments
FYI: I created this extended validation that looks working:
|
ah yeah I should note that in the documentation ,but yes that's the correct way to do it. |
I already posted (accidentally) here: jaredpalmer/formik#90 (comment) To repeat my question: Did anything change in the way how |
@vuhrmeister make sure you aren't using an arrow function for |
Oh man … it can be so easy :) Anyhow: the docs doesn't say anything about |
happy to take some doc PR's :) |
what is going on here i'm not getting ref value any ideas? https://codesandbox.io/s/zqlj1qp03p?expanddevtools=1 |
@trisox refs work for sibilings and child paths, they can't walk up to parents |
@jquense / @jaredpalmer ah oke any tips for that? i gave the whole object that needed to be validated as context... https://github.com/mariocasciaro/object-path |
#49 (comment) has a solution:
|
where exactly can I add Yup.addmethod I am not able to figure out how to add this Yup.addmethod and validate can some one help me Thanks Below Code is written in single component file component.js Just looking how to compare fields by using addmethod class Component extends React.Componenet { const formikEnhancer =withFormik({ const MyForm =props => { /code for UI/ ); }; const MyEnhancedForm =formikEnhancer(MyForm); export default connect (component); |
Solution provided in #97 comment no longer works. In the message parameter, When see related post on stack overflow. |
Was having issues with the solution provided in this comment Fixed this by adding a test:
Works on v0.28.4 with formik 2.1.4 |
this is something helpful - https://codesandbox.io/s/react-hook-form-select-validation-onchange-with-when-vrty2?file=/src/index.js |
This was really helpful!! Thanks |
export const passwordSchema = object({
currentPassword: string().optional(),
newPassword: string().when('currentPassword', {
is: (val: string) => val !== '',
then: schema => schema.required(),
}),
newPasswordCheck: string().when('newPassword', {
is: (val: string) => val !== '',
then: schema => schema.required().oneOf([ref('newPassword')]),
}),
}); |
Finally, what's the recommended way ? :D |
Thanks for sharing this! And in the above snippet, it should be |
Thanks you !! |
How can I have rules to validate that the user wrote the same
account
andconfirmedAccount
?Looks like
yup.ref
only works for casting data, not for validations?So, how can I validate it?
The text was updated successfully, but these errors were encountered: