javascript - Export several datasets toExcel() at a time -


i didn't find mention of possibility export data several webix data sources 1 excel file.

something webix.toexcel($$("table1"), $$("table2")); isn't working (obviously) perhaps there's way export multiple data?

any suggestions appreciated.

pre-snippet: http://webix.com/snippet/269edb58

there no way export excel file multiple sheets. still can combine data in 1 file next

var dt = new webix.datacollection({}); dt.parse($$("table1").serialize()); dt.parse($$("table2").serialize()); webix.toexcel(dt); 

Comments