0

我不是 jquery 专家,我使用的是 Ludo 的 jquery treeTable,它非常好。

但是我无法按照文档中的建议使用“sortBranch”对文件夹节点的子节点进行排序。

特别是我得到了错误:

TypeError: node is undefined node.children.sort(sortFun);

看来我没有传递正确的节点对象,请参见下面的代码:

$("#trackfileslist .folder").each(function(index,key) {

    $("#trackfileslist").treetable("sortBranch", $(this));

});

到目前为止,我无法找到一些样本。

非常感谢任何人的帮助。

谢谢。

4

1 回答 1

0

这应该工作

<script>
var node = '';
$("#trackfileslist .folder").each(function(index,key) {
   node = $("#trackfileslist").treetable("node", $(this).attr('data-tt-id'));
   $("#trackfileslist").treetable("sortBranch", node);
});
</script>
于 2015-09-25T01:06:49.737 回答