jQuery easyUI datagrid 增加求和統計行

weixin_33884611發表於2017-11-28

在datagrid的onLoadSuccess事件增加程式碼處理。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
  <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>

  本文轉自問道部落格51CTO部落格,原文連結 http://blog.51cto.com/450236/1839223如需轉載請自行聯絡原作者

crackernet

相關文章