我有这种工作和平的代码,它显示在我的 MVC3 Razor Web 应用程序中填充一个 DropDownList。
@Html.DropDownListFor(x => x.ReminderTime,
new SelectList(Model.RemindersList, "Item1 ", "Item2"))
我需要保留 DropDownList 填充但禁用它,因此用户无法选择列表中的值。
你能指出我正确的方向吗?请给我一个代码示例。谢谢!
我有这种工作和平的代码,它显示在我的 MVC3 Razor Web 应用程序中填充一个 DropDownList。
@Html.DropDownListFor(x => x.ReminderTime,
new SelectList(Model.RemindersList, "Item1 ", "Item2"))
我需要保留 DropDownList 填充但禁用它,因此用户无法选择列表中的值。
你能指出我正确的方向吗?请给我一个代码示例。谢谢!
像这样,通过指定 HTML 属性。DropDownListFor
@Html.DropDownListFor(
x => x.ReminderTime,
Model.RemindersList,
new { disabled = "disabled" }
)
我的解决方案感谢 Ravi hit
@Html.DropDownListFor(x => x.ReminderTime,
new SelectList(Model.RemindersList, "Item1 ", "Item2"), new { disabled = "disabled" })