2

I've written a implementation of IPagedCollectionView and when I hook it to a DataPager, it remains empty and disabled. I'm providing members for IPagedCollectionView and ICollectionView, IEnumerable, IEnumerable<T>, and the notifies. What am I doing wrong?

Also is there already an implementation of IPagedCollectionView for silverlight that wraps around a RIA Services EntityQuery in order to provide server-side sorting that requests only a single page of data at a time?

Jordan
  • 9,642
  • 10
  • 71
  • 141

1 Answers1

0

IPagedCollectionView must be implemented side-by-side with ICollectionView, not alone. I don't know what can be your problem, but you could check this sample from Simon Ferquel.

Pablonete
  • 1,504
  • 1
  • 14
  • 11