↧
How to control mutilpe validators on one property?
We really recommend using INotifyDataErrorInfo for validation. It's async and supports rich error info.Here's a blog post series I put together for RIA Services validation - much of this applies to...
View ArticleHow to control mutilpe validators on one property?
Instead of DataAnnotation, Use IdataErrorInfo and customize the error message.if you have time, just read this articleorCheck the below linksSimple with...
View ArticleHow to control mutilpe validators on one property?
Suppose I have apply 2 validator on one property in meta data class like: [RegularExpression("[0-9][0-9][0-9]", ErrorMessage = "Must be 3 digitals.")] [CustomValidation(typeof(MyValidator),...
View Article