I have a DataPager which is set up in the following way:
The table is bound to a QueryableCollectionView which uses an IQueryable object to get its data. So far everything is working but when I use ShowInsertRow="True" and click on the "Click here to add new item" I don't see any reaction, but after clicking on that item the DataPager does not do anything when I try to change pages.
The problem seems to only exist when using IQueryable.
<telerik:RadDataPager x:Name="radDataPager" Source="{Binding Items, ElementName=TableSource}" PageSize="10"/>The table is bound to a QueryableCollectionView which uses an IQueryable object to get its data. So far everything is working but when I use ShowInsertRow="True" and click on the "Click here to add new item" I don't see any reaction, but after clicking on that item the DataPager does not do anything when I try to change pages.
The problem seems to only exist when using IQueryable.