You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, from what I see, removing an element with children will delete the item together with all its children.
This behavior is counter intuitive in many real life scenarios where removing the parent would allow the children to "move one level up" to the removed element's level (that is becoming children of the removed element's parent or the root if that's the case) . For example:
Element 1
Child 1.1
Child 2.1
Element 2
after removinv Element 1 would need to turn into:
FormerChild 1.1
FormerChild 2.1
Element 2
Did anyone address this or has seen an example solution somehwere?
The text was updated successfully, but these errors were encountered:
predaioan
changed the title
Removing or replacing
Removing or replacing element while preserving children
Apr 12, 2018
Currently, from what I see, removing an element with children will delete the item together with all its children.
This behavior is counter intuitive in many real life scenarios where removing the parent would allow the children to "move one level up" to the removed element's level (that is becoming children of the removed element's parent or the root if that's the case) . For example:
after removinv Element 1 would need to turn into:
Did anyone address this or has seen an example solution somehwere?
The text was updated successfully, but these errors were encountered: