Load multiple datasets in datatable

Is there a way to load multiple datasets in one datatable ?
Right now i’m trying to put everything into ‘data’.

Snippet: http://webix.com/snippet/a6afcd3b

datatable works only with one dataset.
if there was a relation between two datasets (a common field e.g.), then you could create a subview and load related data from second dataset into subview.

Please check the following article:

http://docs.webix.com/datatable__columns_configuration.html#externaldatasourceforthecolumn

Using collection property, you can load data to the column from a DataCollection, another component or from an array.

You can use the next data structure:

http://webix.com/snippet/2ccc7d2d

But please note that the text editor will use the data from the original dataset while select will operate with ‘value’.

Thank you intregal and Listopad !