I've added an ASP.net MVC validation summary and even when the page is first loaded and when ModelState is valid it renders this out...

<div class="validation-summary-valid" data-valmsg-summary="true"><span>Errors</span>
<ul><li style="display:none"></li>
</ul></div>

The text 'Errors' is not hidden! (Its not even styled but that's not the point!)

How do I make it only show the validation summary heading when there's an error?

Cheers, Ian.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 5 down vote accepted

The validation-summary-valid CSS class is defined in the default MVC /Content/Site.css file as:

.validation-summary-valid
{
    display: none;
}

...do you definitely have a reference to this file in your View?

link|improve this answer
Ahhh brilliant! Thanks Steve. – Ian Warburton Jun 8 '11 at 20:47
I guess it not being styled was the point. – Ian Warburton Jun 8 '11 at 20:48
You're welcome, glad it's sorted out :) – Steve Wilkes Jun 9 '11 at 8:27
feedback

Your Answer

 
or
required, but never shown

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