Hello,
I have the Amount column in my grid which is multiply price and quantity fields from data source.
<kendo-grid-column title="Amount" editable="false" width="120">
<ng-template kendoGridCellTemplate let-dataItem>
{{dataItem.Price * dataItem.Quantity}}
</ng-template>
</kendo-grid-column>
How can I add Total of this amount column to show in kendoGridFooterTemplate?
I don't have any group in my group, just want to show total Amount of the whole grid.