enables the specified tab in the tabbar
mode | boolean | (optional) set to true to select tab after enable, default false |
var myTabbar = new dhtmlXTabBar("parentId");
// enable only
myTabbar.tabs("a1").enable();
// enable and then select
myTabbar.tabs("a1").enableTab(true);
added in version 4.0
Back to top