Jordan
Jordan

Reputation: 9901

Why is DataPager ignoring my custom IPagedCollectionView

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?

Upvotes: 2

Views: 473

Answers (1)

Pablonete
Pablonete

Reputation: 1524

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.

Upvotes: 0

Related Questions