|
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">×</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">×</a> |
| 34 | + @Html.ValidationSummary(ExcludePropertyFailures) |
| 35 | + </div> |
| 36 | + } |
37 | 37 | }
|
0 commit comments