Prashant Cholachagudda
Prashant Cholachagudda

Reputation: 13090

How to implement paging in Silverlight 3 datagrid?

I was trying to implement Grouping and paging in silverlight 3's datagrid, I found ways to do the both with help of PagedCollectionView class,

but the problem is I need tradition ASP.Net datagrid like paging, how could I do that? any Idea?

Upvotes: 2

Views: 2634

Answers (1)

James Cadd
James Cadd

Reputation: 12216

I would recommend using .NET RIA Services which includes a DataPager control. You can wire the scenario up in Xaml fairly easily, here's an example:

http://msmvps.com/blogs/theproblemsolver/archive/2009/04/27/paging-with-the-silverlight-ria-services-domaindatasource.aspx

Upvotes: 1

Related Questions