I have a radgrid and I am populating the grid using data returned from a web service call (after massaging the data returned by WS) A lot of records are returned from this web service calls. I would like to paginate it ,but paginating in the server side makes another call to WS, which I do not want.
On top of it, during post backs the gridItemCount is set to the page size, though there are more records than the page size.
I would like to do some sort of pagination in the client side, where clicking on next/prev would just hide/show relevant pages. And when the page does a postback, I would like to "post" the entire grid instead of a portion of it. Is it possible ?
On top of it, during post backs the gridItemCount is set to the page size, though there are more records than the page size.
I would like to do some sort of pagination in the client side, where clicking on next/prev would just hide/show relevant pages. And when the page does a postback, I would like to "post" the entire grid instead of a portion of it. Is it possible ?