在 igTree 中拖放后无法捕获节点顺序(Infragistics IgniteUI)

Unable to capture order of nodes after Drag and Drop in igTree (Infragistics IgniteUI)

我们可以在 nodeDropped 事件中使用如下所示的方法,它将检查节点的最新顺序。

nodeDropped: function (evt, ui) {

                    //This will have the latest order of nodes checked
                    var nodes = treeElement.igTree("checkedNodes");
}