如何在Kendo Treelist的一个字段中使用多个按钮?

时间:2018-01-30 11:08:10

标签: kendo-ui treelist

我想在TreeList中使用自定义命令在Kendo Grid之类的一个字段中使用2个或更多按钮,但我不能这样做。有没有人有解决方案?

1 个答案:

答案 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
});

DEMO