Reputation: 9901
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
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