Hi there
I have a grid with draggable functionality but if I enable the default sort the drag & drop won't work any more.
I'm setting the default sort in jquery:
grid.dataSource.sort({ field: "Id", dir: "asc" });
I've tried to do it in C# code but got the same results.
Can anyone help me with it ?
Thanks
I was able to solve the issue by ordering the records on database level, which I was trying to avoid. But, it's better than nothing at all.