Posted 11 April 2020, 7:46 pm EST
Hi Team ,
I have a grid with pagination(wj-collection-view-pager) and I am trying to download the grid but it is only downloading the rows on the current page.
This is what my requirement is- I have around 1500-2000 rows with pagination and users will filter it down. I want to download that filtered list even if it is on multiple pages. Thanks.
export(grid) {
var book = gridXlsx.FlexGridXlsxConverter.save(this.grid, { includeColumnHeaders: true,
includeRowHeaders: true });
//name the sheet
book.sheets[0].name = 'FlexGrid Data';
// save the book
book.save('FlexGrid-Export.xlsx');
}