Documentation

cells

defines content of tabview

array cells;

Example

webix.ui({
    view:"tabview",
    cells:[
      { header:"A", template:"My Tab 1 "},
      { header:"B", template:"My Tab 2 "}
    ]
})

Back to top