I have a question regarding the Asp.Net Grid.
* I do not use an ObjectDataSource.
* I return a List<entityObject> from the web service using the underlying database to do my paging. I.e., I request pages one at a time, say 25 rows, each row populates an entityObject.
* As part of each query, I add an int column/property on the entityObject called TotalListCount that is populated immediately following the query and returned to the web page as an ordinary property (I know, its redundant, but simple.).
* Here is the question: Can I set a Grid property so that the Pager "thinks" the total row count in the datasource is TotalListCount (not 25)?
FYI, to do this with the built-in grid, I had to subclass the GridView and override the InitializePager() event handler to set the pagedDataSource.VirtualCount to my custom count (i.e. TotalListCount). This works fine, but I am looking to the Telerik Grid to help with upcoming in-grid editing scenarios.
Thanks, dstelow