After sorting my rows on Ag-grid-react, drag and drop stops working. Before sorting, drag and drop is all set and working well.
postSort API does not seem to have something to achieve what I need, reset the row or even set draggable just like for selection.
postSort={nodes => nodes.forEach(n => n.setRowSelectable(true))}
I've tried also to use
postSort={nodes => nodes.forEach(n => n.setDragging(true))}
but that would actually start the dragging for all the rows instead
I want the drag and drop to keep working when row is clicked after sorting them. Thanks in advance!