easyui-datagrid计算汇总
Posted yqj234
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了easyui-datagrid计算汇总相关的知识,希望对你有一定的参考价值。
1.easyui datagrid经常使用到汇总列,为了方便统计数据,可直接写标准的通用函数,来计算数据的结果。
<style type="text/css">
.subtotal { font-weight: bold; }/*合计单元格样式*/
</style>
<script type="text/javascript">
function onLoadSuccess() {
//添加“合计”列
$('#table').datagrid('appendRow', {
Saler: '<span class="subtotal">合计</span>',
TotalOrderCount: '<span class="subtotal">' + compute("TotalOrderCount") + '</span>',
TotalOrderMoney: '<span class="subtotal">' + compute("TotalOrderMoney") + '</span>',
TotalOrderScore: '<span class="subtotal">' + compute("TotalOrderScore") + '</span>',
TotalTrailCount: '<span class="subtotal">' + compute("TotalTrailCount") + '</span>',
Rate: '<span class="subtotal">' + ((compute("TotalOrderScore") / compute("TotalTrailCount")) * 100).toFixed(2) + '</span>'
});
}
//指定列求和
function compute(colName) {
var rows = $('#table').datagrid('getRows');
var total = 0;
for (var i = 0; i < rows.length; i++) {
total += parseFloat(rows[i][colName]);
}
return total;
}
</script>
以上是关于easyui-datagrid计算汇总的主要内容,如果未能解决你的问题,请参考以下文章
easyui-datagrid通过action从数据库获取数据的关键代码
easyui-datagrid如何通过ajax绑定数据(java)