如何在剑道树列表中的一个字段中使用多个按钮



我想通过使用 TreeList 中的自定义命令在一个字段中使用 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
});

演示

相关内容

  • 没有找到相关文章

最新更新