Author Topic: That command cannot be used on multiple selections  (Read 2624 times)

metalsimyaci

  • Newbie
  • *
  • Posts: 3
    • View Profile
That command cannot be used on multiple selections
« on: January 22, 2018, 03:47:30 pm »
I get the below error message when I attempt to add a new worksheet to / copy cells from an Excel 2013 .xlsx file generated in browser.
Paramquery Pro v3.4.0

Code: [Select]
Javascript:
   
        var blob = this.instance.pqGrid("exportData",
            { format: "xlsx", render: true, sheetName: "Page 1" });

        if (typeof blob === "string") {
            blob = new Blob([blob]);
        }
        saveAs(blob, "test.xlsx");

       

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6310
    • View Profile
Re: That command cannot be used on multiple selections
« Reply #1 on: January 22, 2018, 04:39:22 pm »