Erik Rasmussen
Erik Rasmussen
Fix released in [`[email protected]`](https://github.com/final-form/final-form/releases/tag/v4.20.2).
Add a test showing that this works?
If I'm understanding the desire correctly, it's that you want to pass something like: ```js { values: { firstName: true, lastName: true } } ``` ...and _only_ be notified when...
Can you see if this is still a problem after [`v6.4.0`](https://github.com/final-form/react-final-form/releases/tag/v6.4.0)?
The way the Wizard is implemented it is keeping each page as a separate form, and the combining _only the values_ in the parent component. This solves _many_ problems like...
I get it, and even more so, _feel_ it. `formatOnBlur` is a bit of inelegance tacked on to a nicely balanced system. To solve this, however, we need to come...
Well, this could be done with record-level validation, but you're right, it's not entirely possible with field-level validation at the moment. It would need some additional meta information... OR, you...
> Running field-level validation at the array-level does work, but then we loose the ability to show errors related to the collection as a whole (like its minimun and maximum...
Interesting idea. [My most popular StackOverflow answer](https://stackoverflow.com/questions/37168954/redux-form-how-to-handle-multiple-buttons/37173842#37173842) is about this specific use case. I like the `.with()` syntax you propose.
Ooh, BEFORE the validation.. yes, that makes sense...