Move calendar next to datatable

Hello ,

Right now i have webix calendar under my datatable ( Snippet if needed : http://webix.com/snippet/4da7a1d1)

How can i put this calendar left next to the datatable like that :

P.S ssry for my paint skills :slight_smile:

you may try to use { cols:[] }, as in http://webix.com/snippet/c188f138
( I extracted the components into variables for clarity ).

the relevant modification is :

webix.ui({ rows: [ toolbar, { cols :[calendar, grid] } ] });

Thanks! Exactly what i needed.