I have radgridview, raddatapager and domaindatasource on a page. I have datapagers pagesize set to 1 and domaindatasources page size set to 1 and loadsize to 2. I only have 2 records and I get them, I end up with 2 pages with 2 same items on each page. Instead it should have beed 2 pages with one item on each page. is it a bug or am I doing something wrong?
Thanks in advance
<telerik:RadDataPager Source="{Binding Data, ElementName=GridViewChildrenDomainDataSource}"
IsTotalItemCountFixed="True"
PageSize="1"
Visibility="Collapsed">
<riaControls:DomainDataSource x:Name="GridViewChildrenDomainDataSource"
QueryName="GetMessageSequence"
AutoLoad="False"
LoadSize="2"
PageSize="1"
Unloaded="GridViewChildrenDomainDataSource_Unloaded"
LoadedData="GridViewChildrenDomainDataSource_LoadedData"
Loaded="GridViewChildrenDomainDataSource_Loaded">