Documentation

multiview

allows to configure multiview part of tabview

object multiview;

Example

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

Back to top