data-driven-forms / react-forms

React library for rendering forms.
https://data-driven-forms.org/
Apache License 2.0
302 stars 87 forks source link

Validation is applied on the blur of field before clicking submit. #1434

Open anjalikalsariya opened 9 months ago

anjalikalsariya commented 9 months ago

Validation working on the blur of fields(input, select) before clicking submit. Can we validate fields when clicking on the submit button instead on blur?

rvsia commented 9 months ago

It should be possible to turn off this behavior by setting validateOnBlur, see https://final-form.org/docs/react-final-form/types/FormProps

anjalikalsariya commented 9 months ago

Thank you @rvsia. I'll try it

anjalikalsariya commented 9 months ago

@rvsia I tried validateOnBlur. But is not working.