| Issue 285: | Emptying Lazy Loaded Nodes Causes Reload / Duplicate Children | |
| 1 person starred this issue and may be notified of changes. | Back to list |
What steps will reproduce the problem?
1. Drag all children out of lazy loaded node
2. Collapse and expand the node
3. Notice that the children re-appear (and are now duplicated)
Detected in version 1.2.0 in Chrome (win7)
To fix, update the move function as follows:
// Unlink this node from current parent
if( this.parent.childList.length == 1 ) {
this.parent.childList = [];
// this.parent.bExpanded = false;
} else {
Feb 21, 2012
#1
peter.do...@ddrit.com
Feb 21, 2012
(No comment was entered for this change.)
Status:
Accepted
Labels: Milestone-Release1.2.1
Jun 9, 2012
I used a slight variation of your first patch. Could you check if the second two patches are still required? |