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