鉴于以下 Kendo 下拉菜单,我想在 optionLabel 选择中添加一个类,因此当 ddl 展开时,我可以直观地区分什么是选项标签和什么是选项。理想情况下,这应该从dataBound
并且显然必须从 js 完成。我正在寻找一个奇特的解决方案,我真的不想遍历大部分 DOM。
http://trykendoui.telerik.com/@vojtiik/uLEc
$("#products").kendoDropDownList({
dataTextField: "ProductName",
dataValueField: "ProductID",
optionLabel: "select",
dataBound: function(e) {
// find the option label and add class
},
dataSource: {
transport: {
read: {
dataType: "jsonp",
url: "http://demos.telerik.com/kendo-ui/service/Products",
}
}
}
});