Using the Kendo UI Grid and MVC 4, I haven’t been able to find a way to put summary totals (financial) at the bottom of the grid for select columns.
Is this possible?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Yes indeed! check DataSource Aggregate.
Example:
I have defined a
DataSourcewith two fields: the itemsnameandprice. I want to totalize thepriceso I defined anaggregateforpriceand what I’m going to do issum(you can alsomin,max,averageandcount).Then in the
Gridwhen I define the columns I write:And that’s it!