Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

checkValidity to update UI

When we try to submit the HTML5 form, it prevents the form submission if one or more required fields are missing the value or some other error occurred (type or length mismatch). The UI is updated with highlighted invalid fields and the first invalid field is focused. Moreover, there is a balloon/bubble attached to the first invalid field with an error message.

Now, if its an Ajax form, we call myForm.checkValidity() to confirm the errors before dispatching the Ajax call. But on calling checkValidity(), it doesn't effect the UI with invalid fields highlighted and with bubble attached.

Is there a way to call the browser's native behavior for validation, so we can see the balloon along with the invalid fields highlighted and focused?

like image 598
vulcan raven Avatar asked Jul 08 '12 15:07

vulcan raven


People also ask

What does checkValidity do?

checkValidity() method checks whether the element has any constraints and whether it satisfies them. If the element fails its constraints, the browser fires a cancelable invalid event at the element, and then returns false .

How do you use reportValidity?

To do so, I call a function on onBlur that validates, sets a custom error message using setCustomValidity() and then calls reportValidity() on the form element to show the custom message on a bubble... that validates my first field alright, but when I onBlur that first field and it's valid, the next input field is ...


1 Answers

Simply trigger an actual form submission - http://jsfiddle.net/tj_vantoll/ZN29S/.

An actual form submission will run checkValidity, show the bubble errors, call invalid event handlers as necessary, etc.

To ensure that the form doesn't actually submit you simply need to attach a submit event handler to the <form> that prevents the default action, then do the AJAX call.

This works because the submit event will not be fired unless a form has been met all of its constraints (i.e. has valid data). Therefore an explicit call to checkValidity isn't necessary.

Edit (11/7/12) to addresses comments.

By an actual form submission in this case I was simply referring to a non-AJAX submission done with a submit button. To get the native bubble to display and the focus to change to the appropriate form element this is the only way to accomplish this. If there is no submit button present you can make a hidden one and use that to trigger the submission; it will still work.

I would agree that this approach is less than ideal but it does work in all supporting browsers. The only reason this hack is used rather than calling form.submit() is because form.submit() does not trigger the native validation. To me the issue here is not that there is no API to trigger the validation, but rather that calling form.submit() does not. The spec says that constraint validation should be run whenever "the user agent is required to statically validate the constraints of form element form". I do not know why calling form.submit() would not apply.

It should be noted that checkValidity DOES run through the same algorithm as a native form submission. Therefore you are free to turn off the default bubbles and implement your own. For example something like this.

like image 197
TJ VanToll Avatar answered Oct 21 '22 05:10

TJ VanToll