我想创建一个Telerik Kendo DropDownList,它将包含四个项目:" Patient List"," Benchmarking"," Center Specific",&#34 ; ECMO Run"。剃刀(C#)中最简单的方法是什么?提前感谢您的帮助。
答案 0 :(得分:1)
@(Html.Kendo().DropDownList()
.Name("myDropDownList")
.DataTextField("Text")
.DataValueField("Value")
.Events(e => e.Change("change"))
.BindTo(new List<SelectListItem>() {
new SelectListItem() {
Text = "Patient List",
Value = "1"
},
new SelectListItem() {
Text = "Benchmarking",
Value = "2"
},
new SelectListItem() {
Text = "Center Specific",
Value = "3"
},
new SelectListItem() {
Text = "ECMO Run",
Value = "4"
}
})
.Value("1")
.HtmlAttributes(new { style = "width: 100%" })
)
上面只是使用Kendo UI创建下拉列表的示例代码。
或者,您只需使用纯HTML <select>
标记即可创建下拉列表。
<select id="size" style="width: 100%;">
<option value=1>Patient List</option>
<option value=2>Benchmarking</option>
<option value=3>Center Specific</option>
<option value=4>ECMO Run</option>
</select>
另外,请查看以下链接了解更多详情。