ASP.MVC2 编辑器模板缺少附加 html 属性
我正在使用 asp.net mvc2,我如何创建自己的编辑器模板,例如应用于我的 DateTyme 属性。
在视图中,我通过这种方式调用我的模板:
<%=Html.EditorFor(Function(o) o.DataInicio, New With {.class = "defaultTextBox", .maxlength = "16", .style = "width:120px;"})%>
它可以工作,因为我已经为此目的创建了自定义模板,如下所示:
<%@ Control Language="VB" Inherits="System.Web.Mvc.ViewUserControl" %>
<input type="text" id="<%=viewdata.ModelMetadata.PropertyName %>" name="<%=viewdata.ModelMetadata.PropertyName %>" value="<%=CDate(model).ToString("yyyy-MM-dd") %>" />
但是当我需要检索“AdicionalViewDataObject”时,问题就出现了,因为我添加了操作一些数据到viewdata,在这个上下文(editorTemplate)上,我不知道如何区分additionalviewdataobject和之前在viewdata上添加的数据。
在这种情况下,应该将属性添加到我的最终 html 中,我已在 html.EditorFor 方法中传递了该属性。
有人可以帮我吗?
i'm using asp.net mvc2 and i what to create my own editor template for example to apply to my DateTyme properties.
in View I call my template by this way:
<%=Html.EditorFor(Function(o) o.DataInicio, New With {.class = "defaultTextBox", .maxlength = "16", .style = "width:120px;"})%>
and it works, because i've created my custom template for this porpose, like this:
<%@ Control Language="VB" Inherits="System.Web.Mvc.ViewUserControl" %>
<input type="text" id="<%=viewdata.ModelMetadata.PropertyName %>" name="<%=viewdata.ModelMetadata.PropertyName %>" value="<%=CDate(model).ToString("yyyy-MM-dd") %>" />
But the problem comes when i need to retrieve the "AdicionalViewDataObject", becauseon the action i've added some data to the viewdata and on this context (editorTemplate) i don't know how to distinguish the additionalviewdataobject from the previous added data on viewdata.
on this case is suposed to add the attribures to my final html, that i've passed in html.EditorFor method.
can anyone helpme with that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看 下面的文章介绍了如何在编辑器模板中使用其他 html 属性。
You may checkout the following article about using additional html attributes with editor templates.