Ticket T410637
Visible to All Users

DataGrid - How to export large data on the server

created 9 years ago

I'm wondering what my options are for large excel exports based on grids with remote binding (ASP.NET & WebApi).

I've made a test with a dxGrid and for a query with a hundred thousand rows and 300MB response data from the request, and I got an out-of-memory exception from jquery.

One way to get around that would be to create the excel on the server side, but in order to heed the applied grid filtering and ordering, I would need the information that the grid sends to the server as the DataSourceLoadOptions.

So what would you recommend?

Answers approved by DevExpress Support

created 9 years ago (modified 3 years ago)

Hi Jens,

To export large amount of data, using the server-side export is the better way to go. The following code sends a POST AJAX request to the "ExportController" API controller:

JavaScript
function isNotEmpty(value) { return value !== undefined && value !== null && value !== ''; } ... const grid = $("#grid").dxDataGrid("instance"); const loadOptions = { ...gridInstance.getDataSource().loadOptions() }; loadOptions.filter = grid.getCombinedFilter(); const gridState = grid.state(); let params = '?'; [ 'sort', 'filter', 'totalSummary', 'group', 'groupSummary' ].forEach(function (i) { if (i in loadOptions && isNotEmpty(loadOptions[i])) { params += `${i}=${JSON.stringify(loadOptions[i])}&`; } }); params = params.slice(0, -1); const url = `api/Export${params}`; $.ajax(url, { contentType: "application/json", data: JSON.stringify(gridState), method: "POST", dataType: "json" });

Define the Export method in this controller as follows:

C#
[Route("api/[controller]")] [ApiController] public class ExportController : ControllerBase { [HttpPost] public object Export(DataSourceLoadOptions loadOptions, [FromBody]object gridState) { var dataToExport = (IEnumerable<SampleOrder>)DataSourceLoader.Load(<target DbSet or other context>, loadOptions).data; // export data } }

The dataToExport variable contains records that are displayed in the DataGrid taking into account many data-shaping options like filtering, sorting, grouping, and summaries.
The gridState variable contains a JSON object representing the current DataGrid state: Data Grid States. You can parse this information to create the required Report or XLSX file. We don't have ready-to-use code that generates Excel files based on the DataGrid state. You can generate such code by following the general guidance we described in this help topic: Office File API - Get Started.

    Show previous comments (2)
    Alex Skorkin (DevExpress) 7 years ago

      There are no server-side exporting tools.

        How would I get the Grid's current "layout" (column order, groupings, etc.) from the client and push it to the server?  Can this be done by saving the grid layout anyway and pushing that object to the server?

        Alex Skorkin (DevExpress) 7 years ago

          You can use the state storing customSave/customLoad API for this purpose.

          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.