Our blazing fast Grid component built with pure JavaScript


Post by prashantgoel »

We would like to allow the user the ability to export only selected rows in the grid. What is the best way to achieve this using the Zipcelx library?


Post by ghulam.ghous »

Hi Prshantgoel,

We do not support it but you can always achieve it by doing something like this:

                const selected = grid.selectedRecords;
                grid.store.filter((r) => selected.includes(r));
                grid.features.excelExporter.export();
                grid.store.clearFilters();

Regards,
Ghous


Post by ghulam.ghous »

Btw I have a created a feature request to add support for this. See here https://github.com/bryntum/support/issues/8511. You can subscribe to the ticket to keep of updates.

Regards,
Ghous


Post Reply