Ticket T575535
Visible to All Users

dxDataGrid - The "We found a problem with some content in 'Document.xlsx'. Do you want us to try to recover as much as we can?" error occurs in the exported document when exporting large data

created 7 years ago (modified 7 years ago)

Hello,

I am trying to export the data content of a datagrid to an excel. At opening the excel gives an error message stating that there is an error:

"We found a problem with some content in 'Incidents.xlsx'. Do you want us to try to recover as much as we can? If you trust the source of this workbook, click Yes."

I've attached the excel file. If I filter the datagrid and return less results it works. Is there a limit for how many entries you can have in excel?

Thank You,
Mares

[The attachment has been removed by the DevExpress team for privacy reasons]

Comments (3)
Alessandro (DevExpress Support) 7 years ago

    Hi,

    Perhaps our exporting logic produces an incorrect file. However, we need to test the original dxDataGrid configuration with data that is used to create the problematic file. This will help us understand what goes wrong. So, please provide us with a sample that produces this file. We will research this issue based on this sample.

    Since this ticket is marked as Private, confidential information cannot be accessed by other customers.

      Hi,

      Thank you for the quick reply. Here is a sample JSON which is used to produce the file.

      [The attachment has been removed by the DevExpress team for privacy reasons]

      Alessandro (DevExpress Support) 7 years ago

        Hi,

        Thank you for providing us with the source data. I reproduced it on our side and will discuss it with the team. We will contact you once we have any results. We greatly appreciate your time and cooperation.

        P.S.: Would you mind if I make this ticket Public, so that other customers can track its status? Moreover, we are publishing information about fixed issues (see What's New in Recent Versions) each time a new version is released. Please let us know if it is safe to do so. We can remove your attachments from this ticket if necessary to prevent your confidential information from being accessed by other customers.

        Answers approved by DevExpress Support

        created 5 years ago

        Hi,
        Another approach is to call exportDataGrid instead of the default export. exportDataGrid uses ExcelJS. ExcelJS converts 0x0007/0x000b symbols (invalid XML symbols) to ' ' (space, 0x20) and encodes xml symbols like '<'/'>' to </>
        To cancel the default export, use onExporting and turn on cancel:

        JavaScript
        onExporting: e => { var workbook = new ExcelJS.Workbook(); var worksheet = workbook.addWorksheet('Main sheet'); /* The 'DevExpress.excelExporter.exportDataGrid' function uses the ExcelJS library. For more information about ExcelJS, see: - https://github.com/exceljs/exceljs#contents - https://github.com/exceljs/exceljs#browser */ DevExpress.excelExporter.exportDataGrid({ component: e.component, worksheet: worksheet, }).then(function() { workbook.xlsx.writeBuffer().then(function(buffer) { saveAs(new Blob([buffer], { type: "application/octet-stream" }), "DataGrid.xlsx"); }); }); e.cancel = true; },

        Here is a jQuery based sample that illustrates this approach.

          created 7 years ago (modified 5 years ago)

          Hi,

          Having thoroughly examined this issue, we concluded that it is caused by the incorrect characters ("\u001e\u001f") in the underlying data source:

          JavaScript
          "short_description": "\u001e\u001fDTS241-150: Secure Comms with Type 1B and 2B NB radios fails",

          These are special control characters and Excel does not treat them as valid.

          Either remove these characters from the underlying datasource or in the customizeExportData callback function.

          See also:

          Thanks,
          Alessandro

            Comments (2)

              Thank you for your solution. Yes, you can make the issue visible, but please remove the attachments.

              Have a nice day. :)

              Alex Skorkin (DevExpress) 7 years ago

                Hi Mares,
                I've removed all attachments and made this thread public. I appreciate your cooperation.

                Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

                Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.