Skip to main content
Home Forums Silverlight Programming Programming with JavaScript Paging with Silverlight Datagrid with out using DataPager
2 replies. Latest Post by NavinKumar.K.S on October 22, 2009.
(0)
NavinKum...
Member
295 points
227 Posts
10-22-2009 5:05 AM |
Hello community,
how can i use paging with Silverlight datagrid(i.e., like what in out mail Inbox) where we can set the size and navigation. With out the help of DataPager.
if any one cant understand please ask me friends
esite
Participant
1448 points
310 Posts
10-22-2009 5:16 AM |
You can manually write a procedure that can do paging by sourcing your Grid data using Linq.
Grid.ItemsSource = SomeCollection.Skip(20).Take(20)
10-22-2009 5:19 AM |
Thenk you veru much friend i will tell you after working itout