Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / web / ASP.NET

Announcing MVC3 Validation Groups

5.00/5 (1 vote)
16 Jan 2012CPOL1 min read 33.9K  
The new MVC3 Validation Groups

I’ve recently had to organise the validation for long/multipart forms. Ordinarily, you’d divide the form up into smaller models and create a wizard style user journey. But in this case, the UI design called for the user to arbitrarily jump back and forth between pages in the wizard and other restrictions which meant that we couldn’t persist each sub-page on change. What we needed were validation groups!

As this work involved a bit of the old copy-paste-adapt from the standard MVC code, it’s a bit complicated to go into the fine details of how to replicate the functionality for yourself. So I’ve setup a CodePlex project with a reusable library all ready to go! (Of course, all the source code is up there as well!)

How to Use

  1. Download the latest release from codeplex. (Get the latest Example Site as well to see a preconfigured MVC3 Website and example integration)
  2. Add a reference to ‘McjDevelopment.Mvc3ValidationGroups.dll’ to your MVC3 project:

    image

  3. Copy ‘jquery.validate.unobtrusive.validationgroups.js’ to your ‘scripts’ folder:

    image

  4. Decorate your view models with the [ValidatorGroup] attribute specifying the validation groups that that field belongs to (space delimited):

    image

  5. Update your view to use ‘jquery.validate.unobtrusive.validationgroups.js’ instead of ‘jquery.validate.unobtrusive.js’ (or ‘jquery.validate.unobtrusive.min.js’):

    image

  6. Update your view to include where you want each group's Validation Summary to appear.

    image

  7. Amend your ‘Action’ buttons and links to include ‘data-val-valgroup-name’ attribute and specify which validation groups should be triggered by the user clicking on that element:

    image

  8. Amend your controller to check the appropriate validation groups when called (this implementation shows a common action being called with uses the clicked button name to select the validation group, an alternative is to use JS to dynamically alter the form’s action location).

    image

  9. Test validation groups!

    image

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)