I am using infragistic Hierarchical grid. Some parent rows has lots of child rows. While rendering those child rows, it takes long time. Can I provide paging to the child level data i.e. band(1) level data?
Hello,
Thanks for your interest in our products and for dropping us a line. You can experiment with the Pager settings in the DisplayLayout of the grid (bolded in my sample code below)
<igtbl:UltraWebGrid runat="server" ID="UltraWebGrid1" Height="200px" Width="325px" DataSourceID="WebHierarchicalDataSource1"> <Bands> <igtbl:UltraGridBand DataKeyField="Id"> <AddNewRow Visible="NotSet" View="NotSet"> </AddNewRow> </igtbl:UltraGridBand> <igtbl:UltraGridBand DataKeyField="Id"> <AddNewRow Visible="NotSet" View="NotSet"> </AddNewRow> </igtbl:UltraGridBand> </Bands> <DisplayLayout Name="UltraWebGrid1" BorderCollapseDefault="Separate" RowHeightDefault="20px" ViewType="Hierarchical" Version="4.00" AllowAddNewDefault="Yes" AllowDeleteDefault="Yes" AllowUpdateDefault="Yes">
<Pager AllowPaging="true" PageSize="3"></Pager> </DisplayLayout> </igtbl:UltraWebGrid>
Hope this helps.