I have an action method that accepts the following model - LanguagesViewModel:

public class LanguagesViewModel : ViewModelBase
{
 IEnumerable<LanguageItem> Languages { get; set; }
}

public class LanguageItem
{
 [Required]
 public int LanguageId { get; set; }

 [Required]
 public int SpeakingSkillId { get; set; }

 [Required]
 public int WritingSkillId { get; set; }

 [Required]
 public int UnderstandingSkillId { get; set; } 
}

I also have a custom model binder to bind the POST data to the IEnumerable<LanguageItem>.

The question is how do I get DataAnnotations validation to work?

link|improve this question

17% accept rate
Can you post the code of your custom binder? – Shay Friedman Jun 1 '10 at 3:52
feedback

1 Answer

I found this tutorial which I believe would be very useful for your problem.

link|improve this answer
That tutorial is on how to use validation attributes, not how to enable them when using a custom model binder. – Betty Feb 12 at 23:12
feedback

Your Answer

 
or
required, but never shown

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