E
egarcia
Guest
Hello Bert, > $scope.gridRapport.options.columns.aggregates = '["sum"]'; I noticed that the sample code uses a string as the parameter for the columns.aggregates property. However, this property is expected to be an array. This caused the calculation of the grouping aggregates to fail. Please change the code to look like the following: $scope.gridRapport.options.columns.aggregates = ["sum"]; You can also omit this assignment if you do not need the calculation of grouping aggregates. You would then set groupFooterTemplate to show the grouping aggregates. Related link: - docs.telerik.com/.../grid - docs.telerik.com/.../grid Please let me know if you need more information. Thank you and regards, Edsel
Continue reading...
Continue reading...