2,895 questions
2
votes
1
answer
56
views
Button not triggering form submission
I’m encountering an issue with a save button in my form. I have a SaveButton component that is supposed to trigger a form submission when clicked. The button is linked to Formik’s submitForm function, ...
0
votes
0
answers
8
views
In Tanstack table when a row is editable, how to get formik props dirty,errors,values of all the fields of that row
this is sample one field. When it turns editable goes to another component where this field turned into {
header: 'GUI App Name ',
accessorKey: 'guiappname',
dataType: 'text',
validation: yup.object(...
0
votes
0
answers
32
views
How to get collective error msg, dirty status,values of formik forms
return (
<Formik initialValues={initialValues} enableReinitialize validationSchema={columnDef.validation} onSubmit={() => {}}>
{({ values, handleChange, handleBlur, errors, touched, dirty, ...
0
votes
0
answers
21
views
How can I set a value in formik with react-bootstrap componenet?
I have a simple formik form with a react-bootstrap based component, how can I set a value in formik?
There are only two initial values for simplicity.
If I set an initial value and then pass a value ...
0
votes
0
answers
19
views
React input component for an amount with cents
I would like to create a React component that is a custom input that works with formik.
This component is intended to receive an amount of money (for example in euros) with cents always visible.
For ...
0
votes
1
answer
23
views
React: Formik doesn't trigger render when updating radio buttons from MUI
I'm working on a ToDo app using Formik and MUI. I switched from a select to radio buttons inside the Popover which opens when clicking the icons. But using radio buttons, it doesn't trigger a render ...
0
votes
0
answers
35
views
How to reset custom react-select component filed with Formik, React, Typescrypt?
I am implementing a form with the help of the Formik and yup validation in Nextjs or Typescript application. I am using the react-select library for the select box to choose multiple and single values....
0
votes
1
answer
53
views
Formik not submit
Formik not submit the form when click at submit button. The handleSubmit() isn't being called, nether putting a console.log() or alert() directly at onSubmit.
I am using PrimeReact 10.8.3, React 18.3....
0
votes
0
answers
42
views
Dynamic Form Fields Based on Selected Category in React Native
I am developing a React Native application where I need to create a form that displays different fields based on the user's selected category. I am using Formik for form handling and want to ...
1
vote
1
answer
42
views
Autofilled input fields show both value and label until clicked in React Material-UI TextField
I'm using Material-UI TextField components in my React application for a login form. The issue I'm facing happens when the browser (e.g., Chrome) autofills the saved credentials into the input fields. ...
1
vote
1
answer
200
views
How to use yup async validation with formik and React and avoid to see first required validation
I have React application with formik and yup for building forms.
I need create form with list of inputs, with codes and there must be async validations for API, which will confirm if the code exists.
...
0
votes
0
answers
39
views
The dynamic validation I created with Formik and Yup isn't working correctly
I am trying to write a custom yup util for my project. my goal here is to make the form fields specified according to the data coming from the backend service conform to a single type or rule (eg. key-...
0
votes
1
answer
50
views
How to create conditional assignment in initialValues of Formik
I have initialValues in Formik but I want to assign values in accordance with another field.
I have this code:
const initialValues: MyValues = {
fieldType: fieldType.FIELDA,
fieldInformation: '...
0
votes
0
answers
29
views
Type inference error for meta.error from useField hook
I'm working with a Formik form that uses MUI's autocomplete component. The selected value can either be null or an object. With Yup I'm able to validate the null value using required like so:
...
0
votes
0
answers
33
views
Warning: An unhandled error was caught from submitForm() TypeError: Right-hand side of 'instanceof' is not an object at formik.esm.js:784:31
Issue facing :
I cannot submit the form to the dev/production server.
But in the local code, it is working fine for me.
Warning: An unhandled error was caught from submitForm() TypeError: Right-hand ...