tileLayout

defines the direction of the layout of apps to a row or a column

string tileLayout;

Example

webix.ui({
    view: "desktop",
    tileLayout: "x",
    ...
})


Default value:

"y"

Related samples

Details

Possible options are "x" for rows and "y" for columns.

Back to top