Replies: 1 comment
-
The approach is already shown in the Example 5, you need to update your row detail and A reminder again that SlickGrid by default doesn't support Tree Data natively, what I did to make it work is to keep 2 data arrays in sync, the 2 arrays are the flat dataset and the tree dataset, when one changes then the other one needs to be resync. When you change one of the array, the other should resync automatically. On a very large dataset, this might not be the most efficient, but it is really the only way to get it working in SlickGrid |
Beta Was this translation helpful? Give feedback.
-
Looking for an efficient way to implement up/down movement of nodes in a tree grid where moving a parent node should also move all its children while maintaining the hierarchy.
Current Challenge:
When clicking up/down buttons to move nodes:
Parent node movement should include all children
Keep hierarchy intact
Handle proper node reordering
Maintain correct indentation levels
Current approach:
Beta Was this translation helpful? Give feedback.
All reactions