Datagrid如何依照有勾選的資料進行欄位加總值的計算?
$(function (){
    //第一次進入畫面 先將total歸0
    setTimeout(function (){
        $("#dgMaster").find('tfoot>tr>td').each(function () {
            if ($(this).attr('data-field') == "小計") {
                $(this).find('.table-cell-text').html(0);
            }
        });
    },100);
    //添加onclick事件
    $('#dgMaster').click(function(){
        var Total = 0;
        var sumTotal = 0;
        var rows = $("#dgMaster").datagrid('getChecked');  //取出所有被勾選的資料
        if (rows.length > 0){
            for(var i = 0 ;i <rows.length;i++){
                Total=(parseInt(rows[i].小計));
                sumTotal += Total;
            }
        }
        $("#dgMaster").find('tfoot>tr>td').each(function () {
            if ($(this).attr('data-field') == "小計") {
                $(this).find('.table-cell-text').html(sumTotal);
            }
        });
    });
});