8

ReadOnly 属性似乎不在 MVC 4 中。 Editable(false) 属性无法按我希望的方式工作。

有没有类似的东西有效?

如果不是,那么我怎样才能使我自己的 ReadOnly 属性像这样工作:

public class aModel
{
   [ReadOnly(true)] or just [ReadOnly]
   string aProperty {get; set;}
}

所以我可以这样说:

@Html.TextBoxFor(x=> x.aProperty)

而不是这个(确实有效):

@Html.TextBoxFor(x=> x.aProperty , new { @readonly="readonly"})

或这个(确实有效但未提交值):

@Html.TextBoxFor(x=> x.aProperty , new { disabled="disabled"})

http://view.jquerymobile.com/1.3.2/dist/demos/widgets/forms/form-disabled.html

像这样的东西? https://stackoverflow.com/a/11702643/1339704

笔记:

[可编辑(假)] 不起作用

4

2 回答 2

9

您可以像这样创建一个自定义助手,它将检查属性是否存在ReadOnly属性:

public static MvcHtmlString MyTextBoxFor<TModel, TValue>(
    this HtmlHelper<TModel> helper, Expression<Func<TModel, TValue>> expression)
{
    var metaData = ModelMetadata.FromLambdaExpression(expression, helper.ViewData);
    // in .NET 4.5 you can use the new GetCustomAttribute<T>() method to check
    // for a single instance of the attribute, so this could be slightly
    // simplified to:
    // var attr = metaData.ContainerType.GetProperty(metaData.PropertyName)
    //                    .GetCustomAttribute<ReadOnly>();
    // if (attr != null)
    bool isReadOnly = metaData.ContainerType.GetProperty(metaData.PropertyName)
                              .GetCustomAttributes(typeof(ReadOnly), false)
                              .Any();

    if (isReadOnly)
        return helper.TextBoxFor(expression, new { @readonly = "readonly" });
    else
        return helper.TextBoxFor(expression);
}

属性很简单:

public class ReadOnly : Attribute
{

}

对于示例模型:

public class TestModel
{
    [ReadOnly]
    public string PropX { get; set; }
    public string PropY { get; set; }
}

我已经验证了这适用于以下剃须刀代码:

@Html.MyTextBoxFor(m => m.PropX)
@Html.MyTextBoxFor(m => m.PropY)

呈现为:

<input id="PropX" name="PropX" readonly="readonly" type="text" value="Propx" />
<input id="PropY" name="PropY" type="text" value="PropY" />

如果您需要disabled而不是readonly您可以轻松地相应地更改助手。

于 2013-08-29T16:09:06.417 回答
5

您可以创建自己的 Html Helper Method

请参阅此处: 创建客户 Html 帮助程序

实际上 - 看看这个答案

 public static MvcHtmlString MyTextBoxFor<TModel, TProperty>(
         this HtmlHelper<TModel> helper, 
         Expression<Func<TModel, TProperty>> expression)
    {
        return helper.TextBoxFor(expression, new {  @readonly="readonly" }) 
    }
于 2013-08-29T15:50:14.600 回答