Erik Rasmussen

Results 92 comments of Erik Rasmussen

Okay, so doing it _before_ validation is extremely complicated and actually doesn't make sense. Sync validation doesn't run when the form is submitted, it runs when the form values change....

Your other option would be to set the value in the form. ```jsx { form.change('pill', 'red') // triggers sync validation form.submit() // will not submit if has sync errors }}>Take...

In your sandbox, you shouldn't be managing `flagId` yourself. That's RFF's job. You should only pass a `value` prop to radio buttons or checkboxes. It should look more like this:...

Fix released in [`v4.20.2`](https://github.com/final-form/final-form/releases/tag/v4.20.2).

For validation only on submission, you should use [submission errors](https://github.com/final-form/react-final-form#submission-errors). There's no rule saying that they have to run on the server side. The normal validation is for running on...

I don't have any experience with typescript. I'm open to PRs, though.

Published in [`v8.3.10`](https://github.com/redux-form/redux-form/releases/tag/v8.3.10).

Published in [`v8.3.10`](https://github.com/redux-form/redux-form/releases/tag/v8.3.10).

Published in [`v8.3.10`](https://github.com/redux-form/redux-form/releases/tag/v8.3.10).

`` doesn't, itself, _render_ any components, so I'm not sure what the ref would be too...?