Questions tagged «editorfor»

8
MVC4 DataType.Date EditorFor在Chrome中不显示日期值,在Internet Explorer中很好
我在模型上使用DataType.Date属性,并在视图中使用EditorFor。在Internet Explorer 8和Internet Explorer 9中,这可以正常工作,但是在Google Chrome浏览器中,它显示的是日期选择器,而不是显示值,而只是以淡灰色文本显示“月/日/年”。 Google Chrome为什么不显示该值? 模型: [DataType(DataType.Date)] public Nullable<System.DateTime> EstPurchaseDate { get; set; } 视图: <td class="fieldLabel">Est. Pur. Date</td> <td class="field">@Html.EditorFor(m=>m.EstPurchaseDate)</td>

14
ASP.NET MVC中EditorFor()的HTML属性
为什么我不能将html属性传递给EditorFor()?例如; <%= Html.EditorFor(model => model.Control.PeriodType, new { disabled = "disabled", readonly = "readonly" }) %> 我不想使用元数据 更新:解决方案是从视图中调用此方法: <%=Html.EditorFor( model => model.Control.PeriodEndDate, new {Modifiable=model.Control.PeriodEndDateModifiable})%> 并ViewData["Modifiable"]在我的自定义EditorTemplates / String.ascx中使用,其中我具有一些视图逻辑,该逻辑确定是否将只读和/或禁用的属性添加到输入中。传入的匿名对象EditorFor()是一个名为的参数additionalViewData,其属性将传递到ViewData采集。

7
带有.NET MVC 3 Razor Editor的HTML5占位符
有没有一种方法可以使用@ Html.EditorFor 编写Html5占位符,还是应该只使用TextBoxFor扩展名,即 @Html.TextBoxFor(model => model.Title, new { @placeholder = "Enter title here"}) 还是编写自己的自定义扩展名可能有意义,该扩展名可以通过DataAnnotations使用“描述”显示属性(类似于this)? 当然,同样的问题也适用于“自动对焦”。

12
MVC3编辑器仅供只读
我想在编辑页面中使用EditorFor使其只读。 我试图把只读和禁用为: <div class="editor-field"> @Html.EditorFor(model => model.userName, new { disabled = "disabled", @readonly = "readonly" }) </div> 但是,它不起作用。如何禁用此字段? 谢谢。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.