I would like created a footer with the total of a Column in my GridView ?
Regard's
Lione
1 Answer, 1 is accepted
0
Jack
Telerik team
answered on 24 Oct 2007, 01:38 PM
Hi Claude IMBERT,
Thank you for this question.
Currently, we only support summaries at group level. This means that your RadGridView must be grouped by some column in order to use summaries. You need to add an item to the GridViewTemplate.SummaryItems collection. There is an example on how to use summaries in our Quick Start Framework. You can also use the following code:
GridViewSummaryItem item = new GridViewSummaryItem("Price", "Total: {0}", GridAggregateFunction.Sum);