So far I've only found 1 example in the online documentation on how to create a data pager ext control. However, I do not see how it is bound to a specific grid. I have the following set up in XAML and in the code I"m binding data to the Grids ItemsSource property. The pager does not seem to be working for the data.
<Grid Name="viewContainer" >
<Grid.RowDefinitions>
<RowDefinition />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<syncfusion:DataPagerExt Grid.Row="1" PageSize="25" DisplayMode="FirstLastPreviousNextNumeric" NumericButtonCount="10" />
<syncfusion:GridDataControl
Grid.Row="0"
Name="grd"
AutoPopulateColumns="True"
ActivateCurrentCellBehavior="ClickOnCell"
AllowDelete="False"
AllowSelection="Multiple"
AutoGenerateColumnsInfo="True"
ColumnSizer="AutoOnLoadWithLastColumnFill"
EnableOptimizations="True"
EnableRenderOptimization="EnableOptimizations"
ShowAddNewRow="False"
ShowGroupDropArea="False"
ShowRowHeaderArrow="False"
VisualStyle="Metro"
ShowTableSummaries="False"
ListBoxSelectionMode="MultiExtended"
ShowFilters="True"
ShowColumnOptions="False"
BorderThickness="1"
EnablePaging="True"
/>
</Grid>
Thanks,
-jv