我想在TreeList中使用自定义命令在Kendo Grid之类的一个字段中使用2个或更多按钮,但我不能这样做。有没有人有解决方案?
答案 0 :(得分:0)
您只需在列命令属性中添加一组按钮:
$("#treeList").kendoTreeList({
columns: [
{ field: "name" },
{
command: [
{
name: "Cust1",
text: "Custom1",
click: function(e) {
alert("Custom1");
}
},
{
name: "Cust2",
text: "Custom2",
click: function(e) {
alert("Custom2");
}
},
]
}
],
editable: true,
dataSource: dataSource
});