This repository has been archived by the owner on Dec 25, 2017. It is now read-only.
Asynchronous validator should perform validation after user has finished the input #58
Labels
Milestone
I have a form for registering new users. The form has a username field, and I use a asynchronous validator to validate whether the username exists (as described by the example in the
README.md
).The problem is, the validator will try to validate as soon as the user enter a single letter. This will cause the server receives too many requests.
Is there any way to make the asynchronous validator perform the validation after the user has finished the input? That is, the validation should be performed after the input focus leaving the username field.
Thanks in advance.
The text was updated successfully, but these errors were encountered: