Configuration
Close buttons for tabs

Related sample: Tabbar. Close button
You can equip each Tabbar tab with a close button to make it easily closable via interface. To enable close buttons in all tabs at once, make use of the closable configuration property:
const tabbar = new dhx.Tabbar("tabbar_container", {
closable:true
});
You can also add close buttons for separate tabs by setting an array with ids of the tabs as a value for the closable property:
const tabbar = new dhx.Tabbar("tabbar_container", {
closable: ["paris", "london"]
});
Disabled tabs

By default, all tabs in Tabbar are enabled. It is possible to make one or several tabs disabled using the disabled configuration property:
// make one tab disabled
const tabbar = new dhx.Tabbar("tabbar_container", {
disabled: "London"
});
// make several tabs disabled
const tabbar = new dhx.Tabbar("tabbar_container", {
disabled: ["Paris", "Rome"]
});
Related sample: Tabbar. Rich configuration (close, disable, overflow, active tab)
Position of tabbar

Related sample: Tabbar. Mode: top, left, right, bottom
When initialized with default settings, Tabbar is located at the top of a page. You can locate DHTMLX Tabbar at any desired side of your application by using any other value of the mode property. Besides "top", it can also take "bottom","left" or "right" values. e.g.:
const tabbar = new dhx.Tabbar("tabbar_container", {
mode: "left"
});
Size of tabs
DHTMLX Tabbar allows you to control the height and width of tabs with the help of appropriate configuration options - tabWidth and tabHeight. By default, they are set to 200px and 45px, correspondingly. This is how you can change the default settings:
const tabbar = new dhx.Tabbar("tabbar_container", {
tabWidth: 190,
tabHeight: 50
});
Related sample: Tabbar. Tab size