Model:

using System.ComponentModel.DataAnnotations;
using MySite.Validators;

namespace MySite.Models
{
    public class AddItem
    {
        [Required(ErrorMessage = "Name is required")]
        public string Name { get; set; }

        [TagValidation(ErrorMessage = "At least one tag is required")]
        public virtual List<int> Tags { get; set; }
    }
}

View:

@using (Html.BeginForm()) {
    ...
    <div class="editor-label">
        @Html.LabelFor(model => model.Tags, "Tags")
    </div>
    <div class="editor-field">
        @Html.ListBox("Tags")
        @Html.ValidationMessageFor(model => model.Tags)
    </div>
    ...
}

Validator:

using System.ComponentModel.DataAnnotations;

namespace MySite.Validators
{
    public class TagValidationAttribute : ValidationAttribute
    {
        public override bool IsValid(object value)
        {
            return false;
        }
    }
}

I want my validator to return false to begin with, just to make sure it's working. However, if I don't select any tags from the list and submit the form, it tries to process it without any errors indicating that I need to select a tag first.

What am I doing wrong here?

Solution

I had commented out the if (ModelState.IsValid == false) check in my controller, so I wasn't getting any validation. The reason I did this, initially, was because I was getting an error when I tried to pass the model back to the view, because the ListBox field in the view expected a IEnumerable and not a List.

Here's how I fixed both problems (in the controller):

[HttpPost]
public ActionResult AddItem(AddItem AddItem)
{
    if (ModelState.IsValid == false)
    {
        ModelState.AddModelError("", "Model not valid.");

        List<Tag> Tags = Db.Tags.ToList();

        ViewBag.Tags = new SelectList(Tags, "TagId", "Name");

        return View(AddItem);
    }
    ...
}
link|improve this question

44% accept rate
Are you want client side validation or server side validation ? – dotnetstep Dec 17 '11 at 16:25
'scuse me for being a noobie, but I think I want both. From what I understand, the advantage of using data annotations in ASP.NET MVC 3 is that you get both, right? – davidkennedy85 Dec 17 '11 at 16:40
Okay - I see your point now. I had commented out the if (ModelState.IsValid == false) check in my controller, so I wasn't getting any server side validation. I'm still not sure how to get client side validation though. – davidkennedy85 Dec 17 '11 at 16:58
feedback

1 Answer

To get client side custom validation you need to implement in JQuery and i am assuming you are using ASP.net MVC 3 unobstrusive validation.

http://thepursuitofalife.com/asp-net-mvc-3-unobtrusive-javascript-validation-with-custom-validators/

link|improve this answer
Thanks for pointing this out, @dotnetstep. After taking a swing at it though, I think I'm fine with server side validation. Yikes. – davidkennedy85 Dec 17 '11 at 20:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.