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
20
Total Row count on footer
posted

Hi,

       I want to dispaly the  total row count in grid on footer in Infragistics UltraWebGrid. I will appreciate your quickresponse.

Regards,

Sri. 

 

 

Parents
No Data
Reply
  • 157
    posted

     In the OnInitializeLayout event of your UltraWebGrid, add the following lines of code:

    UltraWebGrid.DisplayLayout.ColFootersVisibleDefault = ShowMarginInfo.Yes; 

    UltraWebGrid1.DisplayLayout.Bands[0].Columns.FromKey("columnName").Footer.Total = SummaryInfo.Count;

     

    I hope that helps you out!

    Tyler

Children
No Data