-
I'm using validationSchema of formik and the validationOnBlur is set to true. I want to make an API call onBlur based on the result of validation on that field. I tried running both the Formik's fiel…
-
Are there any plans to add support for schema-based validation? I'm talking about building a schema object using a library like Yup or Joi and then being able to pass that into final-form to verify t…
-
## 🚀 Feature request
### Current Behavior
Currently if we pass a simple object as validation object, ie.
`
{
name: Yup.string().required(),
data: {
age: Yup.number()
…
-
## Bug, Feature, or Question?
Formik should be able to on form level to handle null and array values given and normalise values handing them off to fields - and then revert them back again when handi…
-
It would be great if `useForm` could handle `` a bit better. Right now when a file is selected the only thing we get is a fake path to this file instead of a `FileList` object.
One simple change th…
-
I am facing an issue regarding Formik form submission,
my object in the form is like below
```
-- In Constructor --
this.state = {
person: {
firstName: '',
lastName: '',
…
-
A function like `allTheFieldOfTheNestedStructureAreTrue`
I need to know if there is at least an error or not, to integrate `spected` with [Formik](https://github.com/jaredpalmer/formik)
The for…
-
I spent the last hour trying to get this package to work on react-native. I want to share my findings and hopefully spark a discussion onto where to take it from here.
Setup:
installing with yarn …
-
## Bug report
### Current Behavior
When using Formik with `validateOnMount: true` and mutated `initialValues` controlled outside the form context, on the 1st change, Formik will go into an infin…
rapzo updated
2 months ago
-
Hi,
my setup for forms is:
* formik and formik-antd for the form creation
* Yup for validation
* react-i18next for localization
This setup works quite well for labels, placeholders etc. but…