Skip to content

Commit 041871f

Browse files
committed
merge
1 parent 0c0e0b8 commit 041871f

File tree

1 file changed

+36
-36
lines changed

1 file changed

+36
-36
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,37 @@
1-
@{
2-
// NOTE: This constant controls whether property validation failures will be excluded from the summary
3-
const bool ExcludePropertyFailures = true;
4-
var renderSummary = false;
5-
6-
if (ExcludePropertyFailures)
7-
{
8-
// Here we need to figure out if there are going to be any validation failures that are not related to a property
9-
// If there are none found, we don't want to display the alert div
10-
11-
// This logic is taken from System.Web.Mvc.Html.ValidationExtensions.GetModelStateList(HtmlHelper htmlHelper, bool excludePropertyErrors)
12-
// which is eventually invoked by calling @Html.ValidationSummary(ExcludePropertyFailures)
13-
// The call to ViewData.ModelState.TryGetValue will determine whether there are any validation failures that are not related to a property
14-
ModelState state;
15-
ViewData.ModelState.TryGetValue(ViewData.TemplateInfo.HtmlFieldPrefix, out state);
16-
17-
if (state != null)
18-
{
19-
renderSummary = true;
20-
}
21-
}
22-
else
23-
{
24-
if (ViewData.ModelState.Any(x => x.Value.Errors.Any()))
25-
{
26-
renderSummary = true;
27-
}
28-
}
29-
30-
if (renderSummary)
31-
{
32-
<div class="alert alert-error">
33-
<a class="close" data-dismiss="alert">&times;</a>
34-
@Html.ValidationSummary(ExcludePropertyFailures)
35-
</div>
36-
}
1+
@{
2+
// NOTE: This constant controls whether property validation failures will be excluded from the summary
3+
const bool ExcludePropertyFailures = true;
4+
var renderSummary = false;
5+
6+
if (ExcludePropertyFailures)
7+
{
8+
// Here we need to figure out if there are going to be any validation failures that are not related to a property
9+
// If there are none found, we don't want to display the alert div
10+
11+
// This logic is taken from System.Web.Mvc.Html.ValidationExtensions.GetModelStateList(HtmlHelper htmlHelper, bool excludePropertyErrors)
12+
// which is eventually invoked by calling @Html.ValidationSummary(ExcludePropertyFailures)
13+
// The call to ViewData.ModelState.TryGetValue will determine whether there are any validation failures that are not related to a property
14+
ModelState state;
15+
ViewData.ModelState.TryGetValue(ViewData.TemplateInfo.HtmlFieldPrefix, out state);
16+
17+
if (state != null)
18+
{
19+
renderSummary = true;
20+
}
21+
}
22+
else
23+
{
24+
if (ViewData.ModelState.Any(x => x.Value.Errors.Any()))
25+
{
26+
renderSummary = true;
27+
}
28+
}
29+
30+
if (renderSummary)
31+
{
32+
<div class="alert alert-error">
33+
<a class="close" data-dismiss="alert">&times;</a>
34+
@Html.ValidationSummary(ExcludePropertyFailures)
35+
</div>
36+
}
3737
}

0 commit comments

Comments
 (0)