Hi,
I cant get the summary row to show in my grid. This is the code I have for setting upo summary row
I cant get the summary row to show in my grid. This is the code I have for setting upo summary row
GridViewSummaryRowItem totals = new GridViewSummaryRowItem();
totals.Add(
new GridViewSummaryItem("Total", "{0}", GridAggregateFunction.Sum));
this.radGridView1.MasterGridViewTemplate.SummaryRowsBottom.Add(totals);
Am i missing something? Are there more properties i need to be setting on the grid or column or master view for the summary row to show ?
Thanks
Anisha