Hi,
I have a xamgrid on which i have allowed sorting. Now I need to apply pagination on the same xamgrid. But the problem is after pagination suppose my page shows 10 records, I want sorting on those 10 records and not my entire itemsource. By default the sorting occurs for the entire itemssource. Is there anyway I can make this sorting pagewise?
There really isn't a mechanism that can perform this. The XamGrid displays the records in that order that the itemsource is manipulated to. So when the sort is applied its applied to all the data and then the paging is applied. If you changed your itemsource in response to the sort and limitthe rows down to what is in the current page.
But how would such a feature work in the longer term. So you sort only to the page of data, so what happens when the page switches? Does the sort get cleared? Does the sort get maintained and now can be applied globally?