Hello, I want to get excel output locally, but I get the following error;
- Uncaught Error: This method has been removed in JSZip 3.0, please check the upgrade guide. -> datatables.bundle.js:15556
The error appears in the DataTable script, DataTable is used on every page.
How can I solve this problem?
{
type: 'button',
label: "Export",
icon: 'ui-icon-arrowthickstop-1-s',
listener: function() {
var format = $("#export_format").val(),
blob = this.exportData({
format: format,
nopqdata: true,
render: true
});
if (typeof blob === "string") {
blob = new Blob([blob]);
}
saveAs(blob, "pqGrid." + format);
}
}