field required based on value of another field - formik, yup
up vote
0
down vote
favorite
I have a react formik form,
where there is a select field,
say the field has values A,B,C,D,E,F.
now say, another field , ChooseSubType , only shows up if I choose B or D and this field will only be a required field when it shows up and not before that.
now, how do I make that work?
here's code for the first field i.e. select field
chooseAlphabet: Yup.string().required('field required'),
chooseSubType : Yup.string().when('chooseAlphabet',
('chooseAlphabet',schema)=>{
console.log('value business : ',chooseAlphabet);
if(chooseAlphabet === "B"||"D"){
return schema;
}else{
return schema.required('field required');
}
}),
but this code isn't working.
now, what changes do I make here to make this work as I want it to?
reactjs formik yup
add a comment |
up vote
0
down vote
favorite
I have a react formik form,
where there is a select field,
say the field has values A,B,C,D,E,F.
now say, another field , ChooseSubType , only shows up if I choose B or D and this field will only be a required field when it shows up and not before that.
now, how do I make that work?
here's code for the first field i.e. select field
chooseAlphabet: Yup.string().required('field required'),
chooseSubType : Yup.string().when('chooseAlphabet',
('chooseAlphabet',schema)=>{
console.log('value business : ',chooseAlphabet);
if(chooseAlphabet === "B"||"D"){
return schema;
}else{
return schema.required('field required');
}
}),
but this code isn't working.
now, what changes do I make here to make this work as I want it to?
reactjs formik yup
Are you getting validation errors or thechooseSubType
isn't showing up?
– Snekse
Nov 19 at 23:20
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have a react formik form,
where there is a select field,
say the field has values A,B,C,D,E,F.
now say, another field , ChooseSubType , only shows up if I choose B or D and this field will only be a required field when it shows up and not before that.
now, how do I make that work?
here's code for the first field i.e. select field
chooseAlphabet: Yup.string().required('field required'),
chooseSubType : Yup.string().when('chooseAlphabet',
('chooseAlphabet',schema)=>{
console.log('value business : ',chooseAlphabet);
if(chooseAlphabet === "B"||"D"){
return schema;
}else{
return schema.required('field required');
}
}),
but this code isn't working.
now, what changes do I make here to make this work as I want it to?
reactjs formik yup
I have a react formik form,
where there is a select field,
say the field has values A,B,C,D,E,F.
now say, another field , ChooseSubType , only shows up if I choose B or D and this field will only be a required field when it shows up and not before that.
now, how do I make that work?
here's code for the first field i.e. select field
chooseAlphabet: Yup.string().required('field required'),
chooseSubType : Yup.string().when('chooseAlphabet',
('chooseAlphabet',schema)=>{
console.log('value business : ',chooseAlphabet);
if(chooseAlphabet === "B"||"D"){
return schema;
}else{
return schema.required('field required');
}
}),
but this code isn't working.
now, what changes do I make here to make this work as I want it to?
reactjs formik yup
reactjs formik yup
asked Nov 11 at 4:18
faraz
56531330
56531330
Are you getting validation errors or thechooseSubType
isn't showing up?
– Snekse
Nov 19 at 23:20
add a comment |
Are you getting validation errors or thechooseSubType
isn't showing up?
– Snekse
Nov 19 at 23:20
Are you getting validation errors or the
chooseSubType
isn't showing up?– Snekse
Nov 19 at 23:20
Are you getting validation errors or the
chooseSubType
isn't showing up?– Snekse
Nov 19 at 23:20
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53245794%2ffield-required-based-on-value-of-another-field-formik-yup%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Are you getting validation errors or the
chooseSubType
isn't showing up?– Snekse
Nov 19 at 23:20