0

在将我的数据库显示到 jqgrid 中后,我需要添加需要计算特定列的总和的摘要页脚行。我在本地填充 Jqgrid ..我还添加了过滤数据的 Jqgrid 过滤器。根据我的需要,我想要我的摘要在从 jqgrid 过滤器工具栏过滤数据时更改页脚...

这是我的代码:

$(function () {
var gridData = null;
var nn = null;
$.ajax({
    url: 'Default.aspx/MyMethod',
    dataType: 'json',
    contentType: "application/json; charset=utf-8",
    type: 'POST',
    success: function (ReportDataNew, textStatus, XMLHttpRequest) {
        gridData = JSON.parse(ReportDataNew.d);
        console.log(gridData);

        $("#gridId").jqGrid({
            data: gridData,
            datatype: "local",
            height: '100%',
            autowidth: true,
            ignoreCase: true,
            rowNum: 100,
            rowList: [100, 200, 300],
            colNames: ['UserName', 'Ordinal', 'Extension', 'Trunk', 'Dialnumber', 'DialDate', 'DialTime', 'Duration', 'Destination', 'Price'],
            colModel: [
                       { name: 'username', index: 'username', width: 100, sortable: true, align: 'center' },
                       { name: 'ordinal', index: 'ordinal', width: 100, sortable: true, align: 'center' },
                       { name: 'price', index: 'price', width: 100, sortable: true, align: 'center'}
                      ]

我需要计算price列的总和

4

2 回答 2

0

在本地数据的定义中,您可以包含一个包含userdata将在页脚中显示的信息的段。在将数据传递到网格之前,您可以计算将在这些变量中传递的值。

前的userdata:

 userdata = new { colOneName = "Totals:", colTwoName = totalsVariableFromLocalCalculation}

然后在您的网格中,您将通过以下方式打开页脚

        footerrow: true,
        userDataOnFooter: true,
于 2013-02-11T04:37:25.023 回答
0

将以下代码放入您的 jqGrid 以计算价格总和:

footerrow:true,
loadComplete : function(){
var $grid = $("your grid id");
var colSum = $grid.jqGrid('getCol','price',false,'sum');
$grid.jqGrid('footerData','set',{price : colSum});
}
于 2015-08-20T10:03:32.540 回答