This question is locked. New answers and comments are not allowed.
Following this documentation http://www.telerik.com/help/silverlight/gridview-paging-using-silverlight-datapager.html step-by-step, I created silverlight project, with a radGridView and DataPager.
But when I run the application nothing happerns, no paging in GridView and not in DataPager.
I'm using Silverlight_2009_2_812 (I guess some Q2 version) version of rad controls. Is this a problem with the version or Am I missing anything?
Here is my code,
dataPager.Source = MonitorData;
radGridView.ItemsSource = MonitorData;
But when I run the application nothing happerns, no paging in GridView and not in DataPager.
I'm using Silverlight_2009_2_812 (I guess some Q2 version) version of rad controls. Is this a problem with the version or Am I missing anything?
Here is my code,
| List<int> MonitorDataNumbers = new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 }; |
| QueryableCollectionView MonitorData = new QueryableCollectionView(MonitorDataNumbers); |
| dataPager.Source = MonitorData; |
| radGridView.ItemsSource = MonitorData; |
dataPager.Source = MonitorData;
radGridView.ItemsSource = MonitorData;
| <telerik:RadGridView Grid.Row="0" x:Name="radGridView"/> |
| <data:DataPager Grid.Row="1" x:Name="dataPager" PageSize="3" DisplayMode="FirstLastPreviousNextNumeric" |
| VerticalAlignment="Center" HorizontalAlignment="Right" NumericButtonCount="0" |
| Margin="0,0,100,0" IsTotalItemCountFixed="True"/> |
