This question is locked. New answers and comments are not allowed.
Hi,
I need to have different results in the group row and the footer row of the radgridview.
Let's say I need to have "count = 12", "count = 13" in the different group row, and "Total = 25" in the footer.
Now I do something like that :
So I have in the footer the right value.
But when I group, in the group row I have
"Total = 12"
"Total = 13"
...
But this is not the result I want. Is there a way to manipulate aggregate in the footer of the radgridview independently of the aggregates display in the group row ?
I need to have different results in the group row and the footer row of the radgridview.
Let's say I need to have "count = 12", "count = 13" in the different group row, and "Total = 25" in the footer.
Now I do something like that :
column.AggregateFunctions.Add(new CountFunction { ResultFormatString = "Total = {0}" });So I have in the footer the right value.
But when I group, in the group row I have
"Total = 12"
"Total = 13"
...
But this is not the result I want. Is there a way to manipulate aggregate in the footer of the radgridview independently of the aggregates display in the group row ?