-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Inline ajax not working! #594
Comments
The above code marks any field that has ANY type of message as isError = true. This poses an problem. It means, you cannot directly exit a field that has a message to press the submit button. Submit won't work if a field isError. For AJAX fields it's a bit more complicated. Because AJAX validation is kicked-off OnBlur(). That means as soon as you exit a field, a "validating please wait" message is also marking the field as invalid. FrancoisH has partially fixed the AJAX side of this in #609 by marking the field as isError=False after AJAX submission, but we still have the problem of not being able to exit a messaged field to press submit. A double click is needed to shift the focus out of the field, and THEN submit. We see this issue in #621 and #544 that was supposedly solved by #502 which is still open. |
Has this ever been fixed? It doesn't look like even in version 2.6.5. |
Fix this please!
When the 'Validating please wait' is returned, the field is set to invalid/false !
The text was updated successfully, but these errors were encountered: