0

我有一个 Kendo TreeList 和一个绑定到onCollapse()方法的折叠事件。

我试图得到折叠的行,e.source但那是undefined

在绑定到dragstart、drop等一些事件的方法中, e.source是row,而不是collapse事件。

我怎样才能得到打算折叠的行?

这是代码:

onCollapse: function (e) {
    console.log(e.source) //undefined
    var row = **?** ;    
    var dataItem = treeList.dataItem(row);
    if (dataItem.Level == 0) { //my dataitems have levels
        console.log("Prevent collapsing the ParentRow of all rows");
        e.preventDefault();
    }
}

------------解决(见答案)-------- 解决方案:e.model

onCollapse: function (e) {
        if (e.model.Level == 0) {
            console.log("Prevent collapsing the ParentRow of all rows");
            e.preventDefault();
        }
    }
4

1 回答 1

0

我刚刚尝试了一些东西,不确定您的数据看起来如何,但请看一下:

<script>
    $("#treeList").kendoTreeList({
      columns: [
        { field: "Name" },
        { field: "Position" }
      ],
      dataSource: [
        { id: 1, Name: "Daryl Sweeney", Position: "CEO", parentId: null, expanded: true },
        { id: 2, Name: "Guy Wooten", Position: "Chief Technical Officer", parentId: 1 }
      ],
      collapse: function(e) {
        console.log("collapse", e.model);
        console.log("collapse", e.model.Name); //will get Daryl Sweeney
      }
    });
</script>

所以在这种情况下,它会写出折叠项目的名称。

这里还有一个用于测试的 Dojo:https ://dojo.telerik.com/isiBaVEt

干杯

于 2018-10-09T18:00:10.100 回答