Hi,
I'm using syncfusion-tree-grid version 19.2.60 and angular version 10 in my project.
I'm working on feature in which I need to move sub-task up and down with in its parent task.
I found one of your API reorderRows. using this i'm able to move task up and down.
but i'm not able to move subtasks up and down with in parent task.
here is code i'm using.
const fromIndexes = data.records.map(val => val.index)
const toIndex = data.action === 'Above' ? (min(fromIndexes) - 1) : (max(fromIndexes) +1)
const action = data.action === 'Above' ? 'above' : 'below';
this.grid.reorderRows(fromIndexes,toIndex,action)