Tag: export to pdf

如何启用jQgrid将数据导出到PDF / Excel

我是jQuery / jQgrid编码的新手。 我使用的是jQgrid版本是4.4.4和jQuery 1.8.3。 我想在我的jQgrid中启用导出到PDF / EXCELfunction。 为此我提到了以下链接 – 点击这里并点击这里 。 在这个链接的基础上,我在jquery中开发了几行代码,如下所示: .jqGrid(‘navGrid’, topPagerSelector, { edit: false, add: false, del: false, search: false, pdf: true}, {}, {}, {}, {} }).jqGrid(‘navButtonAdd’,topPagerSelector,{ id:’ExportToPDF’, caption:”, title:’Export To Pdf’, onClickButton : function(e) { try { $(“#tbPOIL”).jqGrid(‘excelExport’, { tag: ‘pdf’, url: sRelativePath + ‘/rpt/poil.aspx’ }); } catch (e) { […]