Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
585
How to enable paging sync with ria service when using XamGrid ?
posted

Suppose I have ria service to load data based on EF. Then I create IPagedCollectionView as ItemSource for XamGrid  in order to apply paging.

Question is: Ria service always load all data at one time, but page only display partial data based on page size.

So I want xamGrid synchronized with ria service data loading. Only load those data for displaying for performance issue.

If I have thousands of rows of data loaded and pagesize=30, it make no sense to load all thousand of row at one time and it even could crash the browser.

How to implement this request?