是否可以使Html.EditorFor变灰



到目前为止,我有这个,它是只读的,但我希望它变灰。我需要它成为一个编辑器,因为我正在使用引导程序,它看起来比文本框更好。

@Html.EditorFor(model => model.EndDate, new { htmlAttributes = new { @class = "form-control", @readonly = "readonly" } })

您可以使用TextBoxFor,只需要稍微重写一点:

    @Html.TextBoxFor(model => model.EndDate, new { @class = "form-control", @readonly = "readonly" })

这样它就添加了您的form-control类。

最新更新