Hi Support,
I've been using the Radgrid component for some time now and have stumble into a problem I can't resolve.
I have a hierarchical grid which I want paging inside the details table. I've used a simple data binding in the server code:
RadGrid2.DataSource = DataTable1;
RadGrid2.MasterTableView.DetailTables[0].DataSource = DataTable2;
And simple relations in the aspx file:
<ParentTableRelation>
<telerik:GridRelationFields
DetailKeyField="IDPerek"
MasterKeyField="IDPerek" />
</ParentTableRelation>
The problem we are facing is that in the details table it seems that we have paging that is not in relation to a level but to the entire data source – so in each level we have the same number of pages although the number of records is different.
In the example below (see file attached) you can see the problem – the number in brackets show the actual number of records in each level:
Note: the characters are in Hebrew and the grid is right to left aligned.
Any help will be appreciated,
Evgeny