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

How to use more than one button in one field in Kendo Treelist?

我想通过在 TreeList 中使用自定义命令在一个字段(如 Kendo 网格)中使用 2 个或更多按钮,但我做不到。有人有解决办法吗?

您只需将一组按钮添加到列命令 属性:

$("#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