Check documentation for the latest version of dhtmlxSuite setAlign DHTMLX Docs

setAlign

aligns tabs within the tabbar

void setAlign(string align);
alignstring"left" or "right", "left" by default

Example

var myTabbar = new dhtmlXTabBar("parentId");
 
myTabbar.setAlign("right");
 
myTabbar.addTab("a1", "Rage", null, null, true);
myTabbar.addTab("a2", "Motorhead");
myTabbar.addTab("a3", "Poisonblack");

Back to top