Posted 21 November 2024, 1:20 pm EST
I have a flexgrid with large number of data in it. Is there any option in flexgrid to download this data as a zip file. So that user can unzip and get the excel. I am currently using the below code to export to excel.
import { FlexGridXlsxConverter } from ‘@grapecity/wijmo.grid.xlsx’;
private saveAsync(grid: FlexGrid, fileName: string, onSaved?: (base64?: string) => any) {
FlexGridXlsxConverter.saveAsync(grid, {includeCellStyles: false, includeColumnHeaders: true}, fileName, onSaved);
}