如何在Kendo UI的组合框中显示禁用选项?

时间:2016-09-26 09:21:33

标签: javascript combobox kendo-ui

是否可以在Kendo UI组合框中启用禁用选项的可见性?

结果应如下所示:http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_option_disabled

问题是Kendo UI正在删除具有disabled-attribute的所有选项。您可以在http://demos.telerik.com/kendo-ui/combobox/index

尝试此操作

1 个答案:

答案 0 :(得分:0)

li模板中,将类添加到已禁用的项目并应用CSS:

.disabled {
    pointer-events: none;
    color: gray;
}