I took some time to review...
- Absolutely.
-
Take a look at the Grid / Basic Paging online demo to see this in action. This demo does not use OnNeedDataSource at all.
And here are my findings...
While the example you supply above does not use OnNeedDatasource, it does use
DataSourceID="SqlDataSource1", which does the exact same thing. It goes to the server on a postback and gets the entire dataset all over again with each 'page' request from the client side. This is what I am trying to avoid.
I put this question back out to the community again, is there a way where I can have the RadGrid take the initial databind of the entire dataset and manage the data it has ON THE CLIENT SIDE automatically. The docs seem to imply this, but I can find no examples that I run on my machine that don't post back and request the data. If I choose to ignore the postback the grid goes blank because it has no data. I am inclined to believe that RadGrid does not support the feature I am asking about. Can someone confirm this one way or the other, and if it can supply code that actually does what I am proposing?
Thanks much!