Hi,
I have an issue.
First I bind ultragrid with a datatable.
then enabled drag drop in ultragrid.
Run the application and change the order of row using drag drop, it is working but when I checked the datatable it is in the previous order.
The order of datarows in datatable is not changed according to the order in ultragrid.
How can we reflect this in datatable?
Regards,
Ceaser
Hi Caesar,
Nothing you do in the grid will ever affect the order of the rows in the underlying data source. The grid cannot do this because the grid deals with teh DotNet BindingManager and IBindingList interface and these do not expose any way to change the order.
You will need to update your data source directly.