我想在编辑页面中使用EditorFor使其只读。
我试图把只读和禁用为:
<div class="editor-field">
@Html.EditorFor(model => model.userName, new { disabled = "disabled", @readonly = "readonly" })
</div>
但是,它不起作用。如何禁用此字段?
谢谢。
我想在编辑页面中使用EditorFor使其只读。
我试图把只读和禁用为:
<div class="editor-field">
@Html.EditorFor(model => model.userName, new { disabled = "disabled", @readonly = "readonly" })
</div>
但是,它不起作用。如何禁用此字段?
谢谢。
Answers:
EditorFor html帮助程序没有带有HTML属性的重载。在这种情况下,您需要使用诸如TextBoxFor之类的更具体的内容:
<div class="editor-field">
@Html.TextBoxFor(model => model.userName, new
{ disabled = "disabled", @readonly = "readonly" })
</div>
您仍然可以使用EditorFor,但是您需要在自定义EditorTemplate中具有TextBoxFor:
public class MyModel
{
[UIHint("userName")]
public string userName { ;get; set; }
}
然后,在您的Views / Shared / EditorTemplates文件夹中,创建一个文件userName.cshtml。在该文件中,输入以下内容:
@model string
@Html.TextBoxFor(m => m, new { disabled = "disabled", @readonly = "readonly" })
additionalViewData
对象可以有htmlAttributes
属性,该属性EditorFor
等中使用的HTML属性。因此它将变为:@Html.EditorFor(model => model.userName, new { htmlAttributes = new { disabled = "disabled", @readonly = "readonly" } })
。
MVC4及更高版本支持此代码
@Html.EditorFor(model => model.userName, new { htmlAttributes = new { @class = "form-control", disabled = "disabled", @readonly = "readonly" } })
disabled
元素不会传递到Controller中。如果您想通过它,请使用readonly
对于那些想知道为什么如果您不希望EditoFor是可编辑的,为什么要使用EditoFor的人,我举个例子。
我的模特中有这个。
[DataType(DataType.Date)]
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = "{0: dd/MM/yyyy}")]
public DateTime issueDate { get; set; }
当您要显示该格式时,唯一的方法是使用EditorFor,但是我为该“输入”提供了一个jquery datepicker,因此它必须是只读的,以避免用户写下错误的日期。
为了使其按我想要的方式工作,我将其放在视图中...
@Html.EditorFor(m => m.issueDate, new{ @class="inp", @style="width:200px", @MaxLength = "200"})
这是我准备好的功能...
$('#issueDate').prop('readOnly', true);
我希望这会对外面的人有所帮助。对不起我的英语不好
这是我的方法:
模型:
[ReadOnly(true)]
public string Email { get { return DbUser.Email; } }
视图:
@Html.TheEditorFor(x => x.Email)
延期:
namespace System.Web.Mvc
{
public static class CustomExtensions
{
public static MvcHtmlString TheEditorFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, object htmlAttributes = null)
{
return iEREditorForInternal(htmlHelper, expression, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes));
}
private static MvcHtmlString iEREditorForInternal<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, IDictionary<string, object> htmlAttributes)
{
if (htmlAttributes == null) htmlAttributes = new Dictionary<string, object>();
TagBuilder builder = new TagBuilder("div");
builder.MergeAttributes(htmlAttributes);
var metadata = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
string labelHtml = labelHtml = Html.LabelExtensions.LabelFor(htmlHelper, expression).ToHtmlString();
if (metadata.IsRequired)
labelHtml = Html.LabelExtensions.LabelFor(htmlHelper, expression, new { @class = "required" }).ToHtmlString();
string editorHtml = Html.EditorExtensions.EditorFor(htmlHelper, expression).ToHtmlString();
if (metadata.IsReadOnly)
editorHtml = Html.DisplayExtensions.DisplayFor(htmlHelper, expression).ToHtmlString();
string validationHtml = Html.ValidationExtensions.ValidationMessageFor(htmlHelper, expression).ToHtmlString();
builder.InnerHtml = labelHtml + editorHtml + validationHtml;
return new MvcHtmlString(builder.ToString(TagRenderMode.Normal));
}
}
}
当然,我的编辑器正在做很多工作,例如添加标签,根据需要向该标签添加必需的类,DisplayFor
如果属性ReadOnly
EditorFor
不是,则添加a,添加a ValidateMessageFor
,最后将所有这些包装在Div
可以Html Attributes
分配的a中对此...我Views
超级干净。
尝试使用:
@Html.DisplayFor(model => model.userName) <br/>
@Html.HiddenFor(model => model.userName)
为一组特定的视图创建一个EditorTemplate(由一个Controller绑定):
在此示例中,我有一个日期模板,但您可以将其更改为所需的任何样式。
这是Data.cshtml中的代码:
@model Nullable<DateTime>
@Html.TextBox("", @Model != null ? String.Format("{0:d}", ((System.DateTime)Model).ToShortDateString()) : "", new { @class = "datefield", type = "date", disabled = "disabled" @readonly = "readonly" })
并在模型中:
[DataType(DataType.Date)]
public DateTime? BlahDate { get; set; }
我使用readonly
属性而不是disabled
属性-因为当字段为只读时,它仍将提交值。
注意:readonly
即使设置为false,任何readonly属性的存在都会使该字段成为现实,因此为什么我将编辑器分支为如下代码。
@if (disabled)
{
@Html.EditorFor(model => contact.EmailAddress, new { htmlAttributes = new { @class = "form-control", @readonly = "" } })
}
else
{
@Html.EditorFor(model => contact.EmailAddress, new { htmlAttributes = new { @class = "form-control" } })
}
我认为这比使用[Editable(false)]属性简单
例如:
public class MyModel
{
[Editable(false)]
public string userName { get; set; }
}