This question is locked. New answers and comments are not allowed.
I just purchased this product, and I am trying to find a way to provide sums for several columns of a grid. I have used Infragistics for a number of years and have been able to create footers that display the sums for columns. I am trying to replicate that behavior, or at least provide something similar.
Although the data I have does not need grouping, I have put a GroupDescription around one column that is the same for all rows. Then I have used the following code to get two sums in the group header:
<tdata:RadGroupDescription.AggregateFunctions>
<tdata:SumFunction Name="TotalAcreage" SourceField="SumOfAcreage" Caption="Total Acreage:" />
<tdata:SumFunction Name="TotalUnits" SourceField="SumOfUnits" Caption="Total Units:" />
<tdata:AverageFunction Name="Ave" SourceField="SumOfAcreage" Caption="Average Acres" />
</tdata:RadGroupDescription.AggregateFunctions>
But only the first one of these sums is displayed. I noticed that someone in the forums had this problem in early 2008. Your example shows two functions, so it must be possible. I'm just not sure why mine only shows one. Any suggestions?
As an alternative, are footer aggregates available for Silverlight?
Thanks,
Jeanne
Although the data I have does not need grouping, I have put a GroupDescription around one column that is the same for all rows. Then I have used the following code to get two sums in the group header:
<tdata:RadGroupDescription.AggregateFunctions>
<tdata:SumFunction Name="TotalAcreage" SourceField="SumOfAcreage" Caption="Total Acreage:" />
<tdata:SumFunction Name="TotalUnits" SourceField="SumOfUnits" Caption="Total Units:" />
<tdata:AverageFunction Name="Ave" SourceField="SumOfAcreage" Caption="Average Acres" />
</tdata:RadGroupDescription.AggregateFunctions>
But only the first one of these sums is displayed. I noticed that someone in the forums had this problem in early 2008. Your example shows two functions, so it must be possible. I'm just not sure why mine only shows one. Any suggestions?
As an alternative, are footer aggregates available for Silverlight?
Thanks,
Jeanne