微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

asp.net-mvc – 在显示模板中使用DisplayFor

我创建了一个htmlhelper扩展,以减少创建表单时重复标记数量

public static MvcHtmlString RenderField<TModel,TValue>(this HtmlHelper<TModel> htmlHelper,Expression<Func<TModel,TValue>> expression)
{
    return htmlHelper.displayFor(expression,"formfield");
}

想法是在我的观点中我可以写@ Html.RenderField(x => x.MyFieldName),它将打印标签和字段的内容,并且已经有适当的div标签.

displaytemplates文件夹中,我创建了包含以下内容的formfield.cshtml:

<div class="display-group">
<div class="display-label">
@Html.LabelFor(x => x)
</div>
<div class="display-field">
@Html.displayFor(x => x)
</div>
</div>

不幸的是,似乎没有可能在显示模板中嵌套displayFor(它不会渲染任何东西).我不想只使用@Model,因为那样我就不会得到布尔值的复选框,日期的日历控件等.

这有什么好办法吗?

解决方法

你不能嵌套displayFor().见: Is it possible to use DisplayFor() from within the EditorFor template control

你考虑过Html.displayForModel()吗?可在此处找到说明和示例代码http://msdn.microsoft.com/en-us/library/ee430907(v=VS.100).aspx

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐