cells

defines the content of Tabview

array cells;

Example

webix.ui({
  view: "tabview",
  cells: [
    {
      header: "List",
      body: {
        id: "listView",
        view: "list", 
        // list config
      }
    },
    {
      header: "Form",
      body: {
        id: "formView",
        view: "form", 
        // form config
      }
    }
  ]
});

Details

Each cell may have the following configuration properties:

  • header - a string with a heading for the cell, displayed as a tab title;
  • body - a configuration object for the widget that is placed in this cell.
See also
  • Articles
  • Back to top