Exporting DataGrid Content to Excel with Custom JavaScript

Integrate the datagrid-export.js script by copying and pasting it in to your project. (function($){ function retrieveRows(targetElement) { var gridState = $(targetElement).data('datagrid'); if (gridState.filterSource) { return gridState.filterSource.rows; } else { return gridState.data.rows; ...

Posted on Mon, 18 May 2026 17:44:49 +0000 by EmperorDoom