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