adds a new cell to the tabview
obj | object | cell configuration object |
$$("tabview1").addView({
header:"New Tab",
/*optional
close:true,
icon:"users",*/
body:{
template:"New content "+webix.uid()
}
});
Configuration object contains setting for the cell header and body:
There also exists a possibility to manually add a cell and a corresponding tab - check the related article.
For these needs, Webix layouts possess a separate addView method for adding child cells, rows and columns.