Metriche repository
- Star
- (12.592 stelle)
- Metriche merge PR
- (Nessuna PR mergiata in 30 g)
Descrizione
Hi,
I have a question about the way Redux Form is working with async validation.
Say we have form with one field which also include async validation for it, and here is the scenario: User start fill the input, and I want to disable the form submittion button before the async validation started (as the user typing), the async validation will run only after the user leave the field (which is alright) but there is no any indication that I can use to determine if the field wait for validation, or in other words, the form is still not valid and waiting for the async validation.
Is there a way to get that flag of before validation or something like invalid flag because of that reason?
If no, I guess the only way is the use the component state, but still, I guess I'm not the only one that facing that issue.
Thanks!