shows the specified tab
mode | boolean | (optional) if set to true - selects the tab after show, default false |
var myTabbar = new dhtmlXTabBar("parentId");
myTabbar.addTab("a1", "Rage", null, null, true);
myTabbar.addTab("a2", "Motorhead");
myTabbar.addTab("a3", "Poisonblack");
myTabbar.tabs("a1").hide(); // hide a1 and select a2
// show tab
myTabbar.tabs("a1").show(); // show a1, but a2 still selected
// or
myTabbar.tabs("a1").show(true); // show a1 and then select
added in version 4.0
Back to top