在 igTree 中拖放后无法捕获节点顺序(Infragistics IgniteUI)
Unable to capture order of nodes after Drag and Drop in igTree (Infragistics IgniteUI)
- 我无法捕获 DragDropTree 中节点的更新顺序
- 但是我能够在检查节点或触发 unchecked.Because "nodeCheckStateChanged" 事件时捕获节点的顺序,该事件捕获对象,如下面的屏幕截图所示。 newCheckedNodes 具有更新顺序的节点
- 浏览了我们拖放时触发的事件列表,但其中 none 捕获了节点检查的顺序。 https://www.igniteui.com/help/api/2018.1/ui.igtree
- 有没有其他方法可以在拖放时捕获选中节点的顺序。
我们可以在 nodeDropped 事件中使用如下所示的方法,它将检查节点的最新顺序。
nodeDropped: function (evt, ui) {
//This will have the latest order of nodes checked
var nodes = treeElement.igTree("checkedNodes");
}
- 我无法捕获 DragDropTree 中节点的更新顺序
- 但是我能够在检查节点或触发 unchecked.Because "nodeCheckStateChanged" 事件时捕获节点的顺序,该事件捕获对象,如下面的屏幕截图所示。 newCheckedNodes 具有更新顺序的节点
- 浏览了我们拖放时触发的事件列表,但其中 none 捕获了节点检查的顺序。 https://www.igniteui.com/help/api/2018.1/ui.igtree
- 有没有其他方法可以在拖放时捕获选中节点的顺序。
- 但是我能够在检查节点或触发 unchecked.Because "nodeCheckStateChanged" 事件时捕获节点的顺序,该事件捕获对象,如下面的屏幕截图所示。 newCheckedNodes 具有更新顺序的节点
我们可以在 nodeDropped 事件中使用如下所示的方法,它将检查节点的最新顺序。
nodeDropped: function (evt, ui) {
//This will have the latest order of nodes checked
var nodes = treeElement.igTree("checkedNodes");
}