如果绑定到kendo下拉列表的值为空(Count = 0),则不显示指定的OptionalLabel,而是显示空白下拉列表
@(Html.Kendo().DropDownList()
.Name("TransactionTypeId")
.BindTo((IEnumerable<KPMG.LER.ViewModel
.General.NameIdPair>)ViewData["TransactionTypes"])
.DataTextField("Name")
.DataValueField("Id")
.OptionLabel("--Select--")
是否有办法始终显示可选标签
答案 0 :(得分:1)
您可以使用通过数据绑定事件触发的javascript控制功能。
if (....) // control if datasource count = 0
$("#TransactionTypeId").data("kendoDropDownList").text(--Select--);
这不是选项标签,但它看起来像是用户的选项标签:)