0

从概念上讲,我希望以下代码能够工作:

@Html.TextBoxFor(x => x.Something, null, new {
                                @class = "custom",
                                data_min = x.min,
                                data_max = x.max,
                                data_step = x.step 
})

当然,似乎我无法从扩展属性部分访问 properties 等minmax

我该如何实施?

谢谢。

4

2 回答 2

2

只需使用Model

@Html.TextBoxFor(
    x => x.Something, 
    new {
        @class = "custom",
        data_min = Model.min,
        data_max = Model.max,
        data_step = Model.step
    }
)
于 2013-07-30T07:32:47.230 回答
0

将此属性添加到您的模型

public IDictionary<string, object> Attributes { get; set; }

然后

@Html.TextBoxFor(model => model.SomeValue, Model.Attributes)
于 2013-07-30T07:34:04.643 回答