This question is locked. New answers and comments are not allowed.
Hello Telerik team!
I have a grid view with several group descriptors, each one containing several aggregated functions defined like this :
Values are placed on the grouping line one next to others. I would like to know if there's a way to place every Aggregate function under the culumn head it aggregates. In our exemple "
I have a grid view with several group descriptors, each one containing several aggregated functions defined like this :
<views:PricingRadGridView.GroupDescriptors> <telerikData:GroupDescriptor Member="CampagneNom" SortDirection="Ascending" DisplayContent="Campagne"> <telerikData:GroupDescriptor.AggregateFunctions> <telerikData:SumFunction SourceField="MontantObjectif" Caption="Montant objectif : "/> <telerikData:SumFunction SourceField="ProvisionDisponible" Caption="Provision Disponible : "/> <telerikData:SumFunction SourceField="Facture" Caption="Facturé : "/> <telerikData:SumFunction SourceField="Solde" Caption="Solde : "/> <telerikData:SumFunction SourceField="ProvisionFinale" Caption="Provision finale : "/> <telerikData:SumFunction SourceField="MontantComptabilise" Caption="Montant comptabilisé :"/> </telerikData:GroupDescriptor.AggregateFunctions> </telerikData:GroupDescriptor> <telerikData:GroupDescriptor Member="GammeNom" SortDirection="Ascending" DisplayContent="Gamme"> <telerikData:GroupDescriptor.AggregateFunctions> <telerikData:SumFunction SourceField="MontantObjectif" Caption="Montant objectif : "/> <telerikData:SumFunction SourceField="ProvisionDisponible" Caption="Provision Disponible : "/> <telerikData:SumFunction SourceField="Facture" Caption="Facturé : "/> <telerikData:SumFunction SourceField="Solde" Caption="Solde : "/> <telerikData:SumFunction SourceField="ProvisionFinale" Caption="Provision finale : "/> <telerikData:SumFunction SourceField="MontantComptabilise" Caption="Montant comptabilisé :"/> </telerikData:GroupDescriptor.AggregateFunctions> </telerikData:GroupDescriptor> <telerikData:GroupDescriptor Member="GroupeClientNom" SortDirection="Ascending" DisplayContent="Type Client"> <telerikData:GroupDescriptor.AggregateFunctions> <telerikData:SumFunction SourceField="MontantObjectif" Caption="Montant objectif : "/> <telerikData:SumFunction SourceField="ProvisionDisponible" Caption="Provision Disponible : "/> <telerikData:SumFunction SourceField="Facture" Caption="Facturé : "/> <telerikData:SumFunction SourceField="Solde" Caption="Solde : "/> <telerikData:SumFunction SourceField="ProvisionFinale" Caption="Provision finale : "/> <telerikData:SumFunction SourceField="MontantComptabilise" Caption="Montant comptabilisé :"/> </telerikData:GroupDescriptor.AggregateFunctions> </telerikData:GroupDescriptor>Values are placed on the grouping line one next to others. I would like to know if there's a way to place every Aggregate function under the culumn head it aggregates. In our exemple "
<telerikData:SumFunction SourceField="MontantObjectif" Caption="Montant objectif : "/>" should be under the "Montant objectif" RadGridViewDataColumn, as I show on the attached image.
Thanks for your help. Regards,
Yolanda