【发布时间】:2021-09-07 05:49:12
【问题描述】:
我正在使用 jqGrid 版本 jqGrid JS - v5.3.0
这是 jqGrid 中的 Action Column,其中给出了 summaryType
{label: 'Action', name: 'ACTION', width: 60
, summaryType: function (val, name, record) {
return "Grand Total Printed:<br /> Grand Total Void:<br /> Grand Total Remaining :"
}
},
$("#headerJqGrid").jqGrid("exportToExcel", {
title: 'Bl Print Control Header',
includeLabels: true,
includeGroupHeader: true,
includeFooter: true,
fileName: "HeaderSearchRecords.xlsx",
maxlength: 40,
});
这是使用的 exportToExcel 函数。当我导出到 excel
时,如何排除 summaryType【问题讨论】:
标签: jquery jqgrid export-to-excel