I've got an app that does the following:
1) Load a DataTable with info
2) Attach the DataTable to the RadGridView
3) Runs a threaded, long process using a BackgroundWorker object.
4) Since it's using a separate thread, I update the rows with new information via the DataTable object using the row number as my identifier to know which row needs updating.
This is all fine until the GridView is grouped. If I group, then run the same process, the row number for the GridView has changed, but not for the DataTable object. How can I get them the same so I know which row to update?
1) Load a DataTable with info
2) Attach the DataTable to the RadGridView
3) Runs a threaded, long process using a BackgroundWorker object.
4) Since it's using a separate thread, I update the rows with new information via the DataTable object using the row number as my identifier to know which row needs updating.
This is all fine until the GridView is grouped. If I group, then run the same process, the row number for the GridView has changed, but not for the DataTable object. How can I get them the same so I know which row to update?