Hi,
I am using DHTMLX Tabbar and I am using below code while initializing the tabbar.
tabbar = new dhtmlXTabBar(“tabbarId”, “top”);
tabbar.setImagePath(“codebase/dhtmlx/dhtmlxTabbar/codebase/imgs/”);
tabbar.setSkin(“dhx_blue”);
tabbar.setHrefMode(“iframes-on-demand”);
tabbar.enableAutoReSize(true);
tabbar.addTab(“bizview”, “Biz View”);
tabbar.setContentHref(“bizview”, “baselineBizView.jsp”);
tabbar.addTab(“itview”, “IT View”);
tabbar.setContentHref(“itview”, “baselineITView.jsp”);
tabbar.setTabActive(“bizview”);
But whenever I populate some data through Ajax calls in to the tabs, the scroll is coming up on the tabbar. I want to avoid the scroll bar on the tabbar.
Please guide me how I can fix this.