closable
adds close buttons for tabs
closable?: boolean | string[];
Example
// adds close buttons for all tabs
var tabbar = new dhx.Tabbar("tabbar", {
closable: true
});
// adds close buttons for separate tabs
var tabbar = new dhx.Tabbar("tabbar", {
closable: ["paris", "london"]
});
Related sample: Tabbar. Close Button
Change log:
added in v6.4