removes view from layout-like component
id | id | id of child view, which need to be removed |
webix.ui({
id:"mylayout"
cols:[
{ id:"mytemplate1" },
{ id:"mytemplate2" },
{ id:"mytemplate3" }
]
})
...
$$("mylayout").removeView("mytemplate2");
The method works for layout rows and cols, multiview cells, accordion and carousel panels, toolbar and form controls.
Back to top