如何在角度为2的kendo网格页脚中显示列的总和。我尝试使用像这样的aggregateBy方法
public sumUnitPrice() {
return aggregateBy(this.gridView.data, [{ aggregate: "sum", field: "UnitPrice" }]);
}
但是在页脚中如何调用此函数
答案 0 :(得分:0)
有一个例子如何使用footerTemplate directive。
同样,您可以在页脚模板中显示aggregateBy
函数的结果 - http://plnkr.co/edit/p8LpBRZmDO5jrhZ5U91w?p=preview