How do I get the new v4 TabBar to render the tabs vertically? I have an application that used the vertical tabs in v3.6. I tried using mode: “left” in the object definition, but the tabs are still horizontal.
this.rltabbar = new dhtmlXTabBar({
parent: "tabs-min", // id/object, parent container where tabbar will be located
skin: "dhx_skyblue", // string, tabbar skin, optional
mode: "left", // string, top or bottom tabs mode, optional
align: "top", // string, left or right tabs align, optional
//close_button: true, // boolean, render closing button on tabs, optional
//content_zone: true, // boolean, enable/disable content zone, optional
//xml: "tabbar.xml", // string, path to xml config, optional
//json: "tabbar.json", // string, path to json config, optional
//onload: function(){}, // function, call after xml/json loaded, optional
tabs: [ // tabs config
{
id: "a1", // tab id
text: "1
4
0
3
0
5
3
0
6", // tab text
width: 130, // numeric for tab width or null for auto, optional
index: null, // numeric for tab index or null for last position, optional
active: true, // boolean, make tab active after adding, optional
enabled: true, // boolean, false to disable tab on init
close: false // boolean, render close button on tab, optional
},
Thanks,
Darrell