I am using kendo grid . I have a column Category which i used for grouping . So i need to show category wise total in group footer template.
So I have used below code
.ClientGroupFooterTemplate(@"<span id=""spnGroupTotalPrice"" style=""float:right;"">#=sum#</span>");
This will work properly when page load. But i want to change the total price when editing Quantity column. So I tried below code
.ClientGroupFooterTemplate(@"<span id=""spnGroupTotalPrice"" style=""float:right;"">#=calculate(Category)#</span>");
But It is not available column values in group footer template. I want to pass category name to calculate function.
Please provide a solution. Thanks in advance.