vote up 4 vote down star
1

How do I get the collection of errors in a view?

I don't want to use the Html Helper Validation Summary or Validation Message. Instead I want to check for errors and if any display them in specific format. Also on the input controls I want to check for a specific property error and add a class to the input.

P.S. I'm using the Spark View Engine but the idea should be the same.

So I figured I could do something like...

<if condition="${ModelState.Errors.Count > 0}">
  DispalyErrorSummary()
</if>

....and also...

<input type="text" value="${Model.Name}" class="?{ModelState.Errors["Name"] != string.empty} error" />

....

Or something like that.

UPDATE

My final solution looked like this:

<input type="text" value="${ViewData.Model.Name}" class="text error?{!ViewData.ModelState.IsValid && ViewData.ModelState["Name"].Errors.Count() > 0}" id="Name" name="Name" />

This only adds the error css class if this property has an error.

flag

1 Answer

vote up 9 vote down check
<% ViewData.ModelState.IsValid %>

or

<% ViewData.ModelState.Values.Any(x => x.Errors.Count > 1) %>

and for a specific property...

<% ViewData.ModelState["Property"].Errors %> // Note this returns a collection
link|flag
1  
Damn! What was that like 5 seconds? Let me see if this works. thanks for the insanely quick response. You know there should be a badge for that. 'Responds to question in less than 5 seconds. And is eventually marked the correct answer.' – Ryan Montgomery Feb 21 at 16:23
Haha, I have a bookmark just for ASP.NET MVC tag. – Chad Moran Feb 21 at 16:25
Question - How do I get the error for a specific property? – Ryan Montgomery Feb 21 at 16:25
1  
the ModelState property is of dictionary type to get the error for pass the key name ViewData.ModelState["Name"] – Marwan Aouida Feb 21 at 16:29
It Works! Thank you. – Ryan Montgomery Feb 21 at 16:34

Your Answer

Get an OpenID
or

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