Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果你们中的任何人都使用过 kendo ui,请告诉我如何在 kendo 组合框中动态添加新项目。
我试过在谷歌和任何地方搜索,我的结论是剑道没有这样的功能。
供参考 - JSBIN
剑道链接 -这里
提前致谢。
您可能知道,有两种方法可以创建组合框(选择和输入)。我无法使用 select 动态添加新项目(如您的示例)。但是,使用输入和数据绑定很简单。
$("#comboBox").data("kendoComboBox").dataSource.add({ text: "Five", value: "5" });
JSBIN 示例 1。 JSBIN 示例 2。