jQuery easyUI datagrid 增加求和统计行的实现代码
投稿:jingxian
下面小编就为大家带来一篇jQuery easyUI datagrid 增加求和统计行的实现代码。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧
在datagrid的onLoadSuccess事件增加代码处理。
<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>
以上这篇jQuery easyUI datagrid 增加求和统计行的实现代码就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- jquery Easyui Datagrid实现批量操作(编辑,删除,添加)
- jQuery Easyui datagrid连续发送两次请求问题
- easyui datagrid 大数据加载效率慢,优化解决方法(推荐)
- jQuery EasyUI编辑DataGrid用combobox实现多级联动
- jQuery Easyui DataGrid点击某个单元格即进入编辑状态焦点移开后保存数据
- jQuery EasyUI学习教程之datagrid点击列表头排序
- jQuery Easyui学习教程之实现datagrid在没有数据时显示相关提示内容
- jQuery EasyUI框架中的Datagrid数据表格组件结构详解
- jquery easyui datagrid实现增加,修改,删除方法总结
- 简介EasyUI datagrid editor combogrid搜索框的实现
- 详解EasyUi控件中的Datagrid
