Created
September 7, 2011 14:18
-
-
Save hazzik/1200683 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@{ | |
Func<ModelMetadata, bool> ShouldShow = metadata => | |
metadata.ShowForEdit && !ViewData.TemplateInfo.Visited(metadata); | |
} | |
@if (ViewData.TemplateInfo.TemplateDepth > 5) { | |
if (Model == null) { | |
@ViewData.ModelMetadata.NullDisplayText | |
} else { | |
@ViewData.ModelMetadata.SimpleDisplayText | |
} | |
} else { | |
foreach (var prop in ViewData.ModelMetadata.Properties.Where(ShouldShow)) { | |
if (prop.HideSurroundingHtml) { | |
@Html.Editor(prop.PropertyName) | |
} else { | |
if (string.IsNullOrEmpty(Html.Label(prop.PropertyName).ToHtmlString())==false) { | |
<div class="editor-label"> | |
@Html.Label(prop.PropertyName) | |
</div> | |
} | |
<div class="editor-field"> | |
@Html.Editor(prop.PropertyName) | |
@Html.ValidationMessage(prop.PropertyName) | |
</div> | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This seems to introduce a bug in which viewmodel properties whose names match ViewBag or ViewData properties are overridden. For example, a property called Title will be overriden by the page title.