Upload data to Excel

Hi! I need to upload > 80,000 rows from a datatable to an Excel file. Since the file is big I get an error from the server. How to make unloading parts?

Hello!

We tested the issue with a >80,000 rows: export data from DataTable into an Excel document works as well.
If you need to get some particular data, so this information can help you
For example, you can choose which columns you want to see in Excel

webix.toExcel($$("table"), {
    columns:{
        "rank":true,
        "title":{ header:"Title", width:250}
    }
});