Export all datasets to Excel not only datasets loaded so far

Hello friends of webix

The question is in the subj. line.

I have a datatable with paginator, which will load dynamically data which is in the datafeed etc…
When export to excel only the just loaded data which has been loaded so far will be send to export excel-list. But I have 17.000 data wanted to export… would it be possible with webix home tools?
Or do I have to create it on server and send an download link?

Thank you
Michael

Hello Michael

By default, the export functionality in Webix will only export the currently loaded data that is visible in the datatable . This means that if you have a paginator and are only displaying a subset of your total 17.000 records, only those currently loaded records will be exported. So if you prefer to handle it on the client side, you should have all data loaded in the datatable at once that can impact performance because of large amount of data.

For large datasets like yours the most efficient way to handle this would be to implement server-side export functionality.

Dear Natalia.

Thank a lot. So I will check you to manage it.