removeView

removes a cell from a tabview

void removeView(id|object view);
viewid|objectthe id or object of the child view which needs to be removed

Example

//removes the active view
var id = $$("tabview1").getValue();
$$("tabview1").removeView(id);

Related samples

Details

There also exists a possibility to manually remove a cell and a tab (check the related article). For these needs, Webix layouts possess a separate removeView method for removing child cells, rows and columns.

See also
Back to top