Documentation

cells

the array with views objects

object cells;

Example

webix.ui({
    view:"multiview", //optional
    cells:[
        { view:"list", id:"listview", ... },
        { view:"form", id:"formview", elements:[...] }
    ]
});

See also

Details
  • Multiview cells may contain any ui components and layout elements you like.
  • Each cell features the unique ID to apply methods like show() and back() to it.
  • If you layout features cells property object, it automatically becomes the multiview, so you needs specify view name.
  • switching between cell is implemeted with integral buttons(tabbar and segmented), tabview or dedicated functions.
Back to top