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
Page size lost when data is reloading
posted

xamGrid data is loaded by setting ItemSource
<ig:XamGrid ItemsSource="{Binding DataList}" >
  <ig:XamGrid.PagerSettings>
     <ig:PagerSettings AllowPaging="Top" PageSize="20" />
  </ig:XamGrid.PagerSettings>
...
</ig:XamGrid>

DataList is loaded in ViewModel by WCF Ria Service.

First time when the data is loaded, pagesize is working fine.

Then I have a button to call WCF ria service to reload data, the Pagesize is not working, all data is populated in one page.

Not sure why. How to figure it out and fix it?