jqGrid - 摘要页脚中的总计精度损失

时间:2013-11-28 03:17:50

标签: javascript jquery jqgrid

我想知道为什么这个摘要页脚的总数有时损失小数精度。 注意:有时表示无论显示多少数据,有时都是正确的,而且不正确。

enter image description here

所以这是我的代码:

jQuery("#clientSalesAnalysisReportTable").jqGrid({
    //url:'ClientSalesAnalysisReportGet',
    datatype: "xml",
    postData: {},
    colNames: ['Billing Status','Month-To-Date Totals'],
    colModel: [
        {name:'bill_stat',index:'bill_stat', width:'2px', sortable:false, title:true, align:"left", search:true, stype:'select', searchoptions:{value:':All;>=6:POSTED;<6:PENDING'}},
        {name:'month_to_date',index:'month_to_date', width:'2px', sortable:false, title:true, align:"right", search:false, formatter:'currency',formatoptions:{ thousandsSeparator:","}}
    ],
    pager: '#clientSalesAnalysisReportPager',
    rowNum: 10000,
    autowidth:true,
    shrikToFit:true,
    scroll:true,
    height:470,
    sortname: 'cust_num',
    sortorder: 'asc',
    hidegrid:false,
    footerrow : true,
    userDataOnFooter : true,
    gridComplete: function(data){
        var grid = jQuery('#clientSalesAnalysisReportTable');
        grid.jqGrid('footerData','set',{
            bill_stat: 'Total',
            month_to_date: parseFloat(grid.jqGrid('getCol','month_to_date',false,'sum')).toFixed(2),
            year_to_date: parseFloat(grid.jqGrid('getCol','years',false,'sum')).toFixed(2)
        });
    },
    loadComplete: function(data){ }
});

0 个答案:

没有答案