From the client-side (JavaScript land) can I get access to the data displayed in the grid? Without having to dissect the grid's HTML.
For example:
If a dataset (JSON, ViewModel, ViewBag or etc) is bound to the grid. After grid events (sorting, grouping, filtering) can I get access the the refined data?
All our data is returned from LINQ queries and bound to the grid. With our current provider. Whenever a user modifies the displayed data (sorting, grouping, filtering) we have to interpret those actions and build SQL to reflect all the changes done to the data. :( A messy and potentially weak point in our system I'd very much like to get rid of.
For example:
If a dataset (JSON, ViewModel, ViewBag or etc) is bound to the grid. After grid events (sorting, grouping, filtering) can I get access the the refined data?
All our data is returned from LINQ queries and bound to the grid. With our current provider. Whenever a user modifies the displayed data (sorting, grouping, filtering) we have to interpret those actions and build SQL to reflect all the changes done to the data. :( A messy and potentially weak point in our system I'd very much like to get rid of.