Hi,
i can move rows when the grid dont have any groupby, but how can do it when i have it?
now i use this code for do it:
grid.DisplayLayout.Rows.Move(grid.Selected.Rows(i), grid.DisplayLayout.ActiveRow.Index)
but it dont work with groupby.
tks for help
i solve with this:
grid.Selected.Rows(i).ParentCollection.Move(grid.Selected.Rows(i), grid.DisplayLayout.ActiveRow.Index)