About client-side form validation and frameworks

Posted on by

There is a good article about client-side form validation on the Interaction Design Blog. It describes important points to keep in mind when building your own framework for client-side validation.

Of course the alternative to building your own framework is to use an existing one. This approach yields some important advantages, amonst them the “given enough eyeballs, all bugs are shallow” principle.

Lets see how well the validation plugin currently performs on the points listed in the article:

1. Use a form validation framework or a form validation library

Check.

2. Focus on solving the big validation problems

As soon as you start developing and implementing your validation, it is easy trying to address all potential validation that is needed for all types of input. My advice is to try to catch 75-85% of the potential user input errors in the front-end validation. Trying to catch all will lead to the following:

  • Bloated code, your framework will grow too large
  • More or less impossible to test client side validation as there are too many combinations of validation that can go wrong
  • Business rules will move to the front-end.(More on how to avoid this by using Ajax later)

Well, bloated code is a problem I tried to address with lots of refactoring. The current codebase has 1446 lines (about half of it being inline documentation). A few weeks ago Dan G. Switzer took a look at the plugin and was able to provide excellent help on specific code-related problems within a few hours.

About testing: The current testsuite for the validation plugin runs 65 tests with over 350 assertions. jQuery’s testsuite runs about 500 assertions. I seems to have a good code coverage, as I added tests for all occuring issues whenever possible. Regression issues are quite likely to be catched by the testsuite, as well as it helps a lot while developing.

Testing against browser events and with AJAX is still a very difficult task, even with the AJAX support in jQuery’s testsuite.

About business rules moving to the front end: Thats more of a design and architectural problem. Avoiding that using AJAX gets supported with the upcoming 1.2 release.

3. Do Form Validation before form is submitted

The message here is to validate when the user inputs something, instead of waiting for the submit event. Pre 1.0 versions allowed you to specify a single event to check individual elements, eg. blur or keyup. That worked in some cases, and was disturbing in other cases, where the user clicked on an input and was welcomed with an annyoing error message. To address those issues, a more sophisticated system was released in 1.1. Basically the plugin waits with validation until the user blurs a field where he entered something incomplete. If the field is already marked invalid (eg. after an attempt to submit an invalid form), all elements are validated on keyup (textinputs) or click (checkbox, radio). The current implementation isn’t perfect yet, and of course feedback is appreciated.

4. Use Ajax Form Validation for business data input

A small teaser for the AJAX validation in 1.2:

$("#myform").validate({
  rules: {
    username: {
      required: true,
      minLength: 2,
      remote: "users.php"
    }
  },
  messages: {
    username: {
      required: "Enter your username",
      minLength: "At least 2 characters are necessary",
      remote: String.format("The name {0} is already in use")
    }
  }
});

The API allows you to use the same declarative style for remote validation as you are used to use for local validation. String.format creates another function that is later called with the value the user entered, resulting in something like “The name asdf is already in use” as the error message.

Check the AJAX validation preview for more details.

5. Do extensive testing of your javascript form validation

That is covered above.

6. Rewrite input data to valid formats

Now this is an interesting point. Basically the idea is to accept “20070515” as a valid date, transforming it into “2007-05-15” for validation. I haven’t seen any specific requests for a feature like this, so if anyone is interested, let me know. Meanwhile a good idea may be to use the masked input plugin to help and assist the user typing the correct format.

7. Attach javascript form validation late in the design process

That is a very good recommendation. jQuery helps a lot with this, due to its unobtrusive nature. Design your form without any JavaScript at all, and add it later, improving the user experience (UX) as much as possible.

8. Make the script i18n- and l10n-compatible

In other words: Avoid hard-coded strings, instead make it as easy as possible to replace them with the current locale.

The validation plugin allows you to translate all default messages by just overwriting them. Its easy to include a file after the plugin file that contains something like the following:

$.extend($.validator.messages, {
  required: "Eingabe nötig",
  email: "Bitte eine gültige E-Mail-Adresse eingeben",
  ...
});

That approach works quite well. You can gather other translation in the same file, for example labels for the datepicker.

To include the proper right translation file for the user’s locale is then a mere serverside issue.

Other problems, eg. different number or date formats, can be covered by writing custom methods, or overwriting the default ones (in $.validator.methods). Methods for german date and number formats are provided by default: date (default JavaScript Date format), dateISO (1990-01-01 or 1990/01/01), dateDE (01.01.1990 or 2.12.2012) and number (100,000.59) and numberDE (100.000,59) are available. Though currently none of those validates any ranges, eg. 0001-13-50 is also a valid iso date.

9. Add callback functions to validator framework

The most important callback function the validation plugin provides is the submitHandler. It is called when a valid form is submitted, allowing you to eg. submit the form via AJAX. Others are available like errorPlacement, to customize where error messages are inserted into the DOM, eg. for table layouts.

In 1.2 a callback for invalid forms gets added, called each time the user submits a form and it is invalid. So far the showErrors callback could be used for that, but that one gets also called each time is single element is validated. The new callback can then be used to update a message like “There are 6 issues in the form below”. Showing and hiding such a message can be handled using the existing errorContainer options.

10. Make your framework/library extensible

The most important point to extend the validation plugin with your own stuff is $.validator.addMethod. It allows you to add any validation method you need. By keeping your own custom methods inside your own files it is easy to update the plugin itself.

Its quite likely that the first approach to AJAX validation will evolve into $.validator.addRemoteMethod, providing all the necessary boilerplate code for remote AJAX methods, but allowing you use any required protocol. It won’t matter if you use get or post, send a single value or the whole form to the server, and if the server returns only true or false, or an error message to display, in whatever format you prefer or need to work with. Of course it would require a bit more work to implement the method, but provides a great flexibility. Your feedback on this is essential, as I avoid to randomly guess what you may need.

I hope this gives a good idea about the current status of the form validation and its progress and should help with the descision to use it or not.

20 thoughts on “About client-side form validation and frameworks

  1. Pingback: jquery validation plugin checklist – Interaction Design Blog

  2. One usability consideration is to choose when to validate. In your example, different scenarios seems to appear :

    – User changes field
    – User corrects invalid field
    – User submits form

    From the user’s perspective, if a field is invalid, he must go back to that field. This lead me to the conclusion that it would be better if the browser could somehow cancel the focus change if the field is invalid and wasn’t’ validated before. The user must be able to change the focus once he was notified.

  3. Be aware that certain information can’t be validated via AJAX due to legal reasons like SSNs, emails or other sensitive personal data, as you are sending the information (surely unencrypted, it’s plain AJAX) without user’s request (and proper advice).

    I have been developing a similar framework based with extensibility in mind, it even got one of it most stressful use cases recently where I needed to add a custom validation for draggables and extend the visual feedback given to the user (verbose error messages and a yellow fade), plus I needed to AJAX-verify one value upon submitting the form to avoid duplicates… thankfully my initial design was versatile enough as to offer full external extensibility (in my case done with Mootools) while mantaining the original library-agnostic source code untouched.

    It’s good to see how more and more developers are picking the extensible path with javascript specially on wild areas such as client-side form validation where we always have new requirements to fulfill.

    /gonchuki

  4. Matei "Ambient.Impact" Stanca on said:

    @gonchuki:
    If you’re dealing with data such as social security numbers, I assume your website is for a business or some other organisation that can afford an SSL certificate. Unless I’m missing something, I believe Ajax can work over an encrypted connection just like a normal request. Never tried it, however, so I could be wrong.

  5. nevertheless, if using onblur or other automated method, you are still transfering sensitive personal information without user’s request.
    It was just so everyone can take proper care when dealing with “client-side” validation via AJAX, the author of this script doesn’t state that in his docs and it never hurts to give some advice. Remember that not everyone is well aware of legal issues related to handling sensitive personal information and may even not care about getting a SSL certificate (i know it’s a Bad Thing, but sometimes the customer or even the hosting provider can be your biggest barrier against getting a proper SSL certificate.)

  6. @zimbatm: So far I came to the conclusion that a programmatic focus change is only useful when the user submits a form.

    @gonchuki: Thanks for mentioning this. Though the framework itself can’t do anything about that, apart from mentioning the issue in the docs. I’ll keep that in mind when updating them for the 1.2 release.

    As you mention the framework you’ve been developing: Can you share anything from that?

  7. Oh no, more javascript mess! Dont duplicate business logic in 2 different places, debugging ones server side code is bad enough, we dont wanto make changes twice. The answer is put all validation rules into your application models, have an ajax call to a service controller that calls the validation routine on the model with the serialized form data and return the messages. Why would you duplicate messages and rules? What if you had multiple languages to support, you would have to enter each language into each javascript file… ahhh

  8. the parameter ‘event’ can’t do anything.it has three options(blur ,keyup,default)when I change it,I can’t see the changes.Anyone can tell me why?

  9. Pingback: My Cup of Java - Today’s Top Blog Posts on Java - Powered by SocialRank

  10. Pingback: bassistance.de » About client-side form validation and frameworks

  11. Pingback: 65 Excellent jQuery Resources (tutorials,cheat sheets,ebooks,demos,plugins…) | Speckyboy - Wordpress and Design

  12. Pingback: jQuery: About client-side form validation and frameworks « Williamo’s Blog.

  13. Pingback: 20 Amazing jQuery Plugins and 65 Excellent jQuery Resources | Speckyboy - Wordpress and Design

  14. I think its funny that this post is about client side validation but the comment form is server side…and a pretty poor implementation of it as well!