从kendo treeview选择的节点中检索id

问题描述 投票:0回答:3

我有这种情况。

1)服务器端返回一个json编码的数组,其中包含不同的字段以及主键,即id。 2)从json 3创建剑道树视图

我想做这个,

1)用户浏览树并选择一个节点。 2)我想找到树的主id或从服务器端传递的任何其他字段以区分所选节点。

我希望我能提出这个问题。提前致谢。

php kendo-ui kendo-treeview
3个回答
4
投票

将您的select函数定义为:

select    : function (e) {
    // Get clicked node
    var node = e.node;
    // Find it's UID
    var uid = $(node).closest("li").data("uid");
    // Get the item that has this UID
    var item = this.dataSource.getByUid(uid);
}

0
投票

对于find uid,您可以通过e.node属性找到它

     select    : function (e) {  
    var uid = e.node.attributes['data-uid'].value;
                var dataItem = this.dataSource.getByUid(uid);
                alert(dataItem.ProductName);
       }

0
投票

这是另一个解决方案:

onSelect: function(e) {
    var treeView = e.sender,
        dataItem = treeView.dataItem(e.node);
    console.log(dataItem.id);  // retrieves an ID of selected node
}
© www.soinside.com 2019 - 2024. All rights reserved.