Set datatable data programmatically?

The documentation says:

There are two main ways of loading data in DataTable:

  • To define datasource in the object constructor;
  • To use parse or load method.

I need to assign the datatable’s data source after I load data from multiple sources and combine them in code.

Why can’t I just assign data and call refresh?
http://webix.com/snippet/18585a70

try it: http://webix.com/snippet/5f6a5b3f

Also, the parse() method provides loadng the data from multiple sources:

http://webix.com/snippet/28a920c1

Those do indeed work! My data is already in a Javascript array, though. Do I actually need to JSON.stringify it first just to load it into the DataTable?

Wait! Wait - I didn’t look closely enough. Those are Javascript arrays, and valid JSON too. I see. Sorry for the confusion!