cells

array with view objects

array cells;

Example

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

Related samples

Details
  • Multiview cells may contain any UI components and layout elements you like.
  • Each cell has a unique ID to apply methods like show and back to it.
  • If your layout object has a cells property, it automatically becomes a multiview, so you don't have to specify the view type.
  • Switching between cells is implemented with specialized buttons (tabbar and segmented), tabview or dedicated functions.
See also
Back to top
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
If you have not checked yet, be sure to visit site of our main product Webix javascript component library and page of multi view product.