ParamQuery grid support forum

General Category => Help for ParamQuery Pro => Topic started by: mscodigno on March 03, 2021, 06:24:06 pm

Title: This method has been removed in JSZip 3.0, please check the upgrade guide.
Post by: mscodigno on March 03, 2021, 06:24:06 pm
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?

Code: [Select]
{
    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);
    }
}
Title: Re: This method has been removed in JSZip 3.0, please check the upgrade guide.
Post by: paramvir on March 03, 2021, 06:26:12 pm
Please use jszip version 2.5.0
Title: Re: This method has been removed in JSZip 3.0, please check the upgrade guide.
Post by: mscodigno on March 03, 2021, 06:45:27 pm
I am already using version 2.5.0. Even if I uninstall JSZip and FileSaver scripts I get the same error. Could it be conflicting with the DataTable?
Title: Re: This method has been removed in JSZip 3.0, please check the upgrade guide.
Post by: paramvir on March 03, 2021, 09:08:30 pm
Please share a jsfiddle or stackblitz so that I can check it.
Title: Re: This method has been removed in JSZip 3.0, please check the upgrade guide.
Post by: mscodigno on March 04, 2021, 12:58:51 pm
https://jsfiddle.net/zekeriyaerogluu/akLpovb6/7/

Note: I am getting this error only in Excel option. I can export with html, json and csv.
Title: Re: This method has been removed in JSZip 3.0, please check the upgrade guide.
Post by: paramvir on March 04, 2021, 04:03:53 pm
your jsfiddle is incomplete and doesn't reproduce the error. Do you get the error if third party library files ( datatable ) are removed.

Please share a complete test case with reproducible error if still facing error.
Title: Re: This method has been removed in JSZip 3.0, please check the upgrade guide.
Post by: mscodigno on March 04, 2021, 04:51:00 pm
When I remove the datatables.bundle.js file, there is no problem, but I have no possibility to remove it because it is used in the project's general scripts. Is there any way to avoid this conflict?
Title: Re: This method has been removed in JSZip 3.0, please check the upgrade guide.
Post by: paramvir on March 05, 2021, 06:17:45 pm
It's difficult to comment on resolution of conflict without looking into it.

So please share a complete test case on jsfiddle with reproducible error.