Categories | Question details Back To List | ||
Tabbar Problem Hi, I have a typical requirement, i want to have a thick line separating the tabs of the tabbar and the content area in Tabbar. Thanks Answer posted by Alex (support) on Jun 26, 2009 03:50 Hello, unfortunately, tabbar doesn't allow to do that. The tabbar can be initialized without content area - there will be only tabs. Usind onSelect event handler you can reload any other container of the page. And in this case you can place any html below tabs (tabbar): tabbar.enableContentZone(false); tabbar.attachEvent("onSelect",function(tabId){ return true }) the sample is dhtmlxTabbar/samples/tabs_orientation/tab_all.html
|