在将我的数据库显示到 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
列的总和