Check documentation for the latest version of dhtmlxSuite setTabInActive DHTMLX Docs

setTabInActive

unselects any selected tab

void setTabInActive();

Example

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

Change log

added in 4.0

Back to top