Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
40
How to provide the pager to the band level data
posted

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?

Parents
  • 28464
    posted

    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. 

Reply Children