Categories | Question details Back To List | ||
Activate DHTMLX Tabbar by 'ID' Hi there, <link rel='STYLESHEET' type='text/css' href='../common/style.css!'> Answer posted by Support on Mar 11, 2008 04:17 In the code provided above you are using tabbar=new dhtmlXTabBar and later a_tabbar.setTabActive('b7') so you are using different name for the same object, the correct code would be tabbar.setTabActive('b7') ( the ID of container can be used as a name in case of init from HTML, in case of init by javascript - you need to use name of var in which object reference stored ) |