hi,
I hv added a column runtime in webgrid and i want to access the value of footer element ,,any help.
this is the code by which i have added a column.
Infragistics.WebUI.UltraWebGrid.UltraGridColumn c = infragrid_keys.Columns.FromKey("Total");
c.Width = Unit.Pixel(150);
Infragistics.WebUI.UltraWebGrid.ColumnFooter cf = c.Footer;
cf.Key = "FinalTot";
cf.Total = Infragistics.WebUI.UltraWebGrid.SummaryInfo.Sum;
cf.Formula = "SUM([Total])";
thanks,