使用pqgrid导出excel

在这里,我有一个关于pqgrid的问题。

var newObj = { width: 1500, height: 600, title: "channel <b>roi</b>", resizable: true, scrollModel: { autoFit: true }, editModel: { clicksToEdit: 2 }, dataModel: { data: obj.data }, draggable:false, freezeCols:7, selectionModel: { type: 'cell', mode: 'block' }, colModel: CM, pageModel: {type:'local'}, toolbar: { cls: 'pq-toolbar-export', items: [{ type: 'button', label: "Export to Excel", icon: 'ui-icon-document', listeners: [{ "click": function (evt) { $("#grid_export").pqGrid("exportExcel", { url: getDownExcelURL(), sheetName: "pqGrid sheet" }); } }] }] }, }; 

这是我在pqgrid中的选项。 我不知道发生了什么错误。 请帮帮我。