Check documentation for the latest version of dhtmlxSuite setTabsMode DHTMLX Docs

setTabsMode

sets tabs' mode (top or bottom)

void setTabsMode(string mode);
modestring"top" or "bottom", "top" by default

Example

// mode can be set by specifying 2nd param in the constructor
var myTabbar = new dhtmlXTabBar("parentId", "bottom");
 
// or using function
myTabbar.setTabsMode("bottom");

Change log

added in 4.0

Back to top