Hi,
I want to dispaly the total row count in grid on footer in Infragistics UltraWebGrid. I will appreciate your quickresponse.
Regards,
Sri.
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