I am using ultrawebgrid load on demand XML and I am trying to get current datagrid view (displayed records) from the client back to the datatable object. What's the best way to do that. I show 20 rows at the time and as user scrolls down, sorts or filters records, it can be 5 or 500 rows displaying on the screen. How to get displayed records exported back in to the dataset or datatable object?
Hello,
I don't know if I understand your scenario completely. What are you trying to accomplish?
If you want to get the displayed records because there might have been updates made by the user, then you should use the update event off of the grid.
Getting data from the grid would be the same as querying your dataset or datatable object and reading the row values from it.
-Taz.