views:

301

answers:

0

Every example I've run across demonstrating paging and sorting assume that the controller action that populates the grid does a getAll on the datasource. However in my application I am calling a web service that performs a search based on some form criteria passed in. When the pager or sort calls the action it sends nulls for all of the form data, thus breaking the result set that I originally had.

How do I implement paging and sorting without calling back to the web service again?