Categories | Question details Back To List | ||
tabbar height problems Hi, Sorry for my english... ñ_ñ Well, my problem is about the height of tabbar... I want that the height of tabbar will cover all the size of window (100%) but It doesn't do it! It only covers 2/3 parts of the window... I will put my code: <div id="contenedorPestanias" style="width:100%;height:100%;"></div> <div id="informacionGeneral"> <iframe id="ifrmConsultaInfoGeneral" name="ifrmConsultaInfoGeneral" marginheight="0" marginwidth="0" frameborder="0" width="100%" height="100%"></iframe> </div> <div id="datosLocalizacion"> <iframe id="ifrmConsultaDatosLoc" name="ifrmConsultaDatosLoc" marginheight="0" marginwidth="0" frameborder="0" width="100%" height="100%"></iframe> </div> <script> tabbar = new dhtmlXTabBar("contenedorPestanias","top"); tabbar.setImagePath("/humanos/javascript/dhtmlxTabbar/codebase/imgs/"); tabbar.preventIECashing(true); tabbar.setSkinColors("#FFFFFF","#FFFFFF"); tabbar.enableAutoSize(true,true); tabbar.enableAutoRow(true); tabbar.enableScroll(false); /*tabbar.setOnSelectHandler(function(){ tabbar.normalize(true); });*/ tabbar.setOnTabContentLoaded(function(){ tabbar.adjustSize(); //tabbar.normalize(true); }); tabbar.addTab("pestana1","Información General"); tabbar.addTab("pestana2","Datos de Localización"); tabbar.setContent("pestana1","informacionGeneral"); tabbar.setContent("pestana2","datosLocalizacion"); ... and in FireFox... ever it puts a vertical scrollbar on the right of the page without the content exceeds the heigh of the page... but in IE doesn't do it! Thanks. Answer posted by Alex (support) on Jul 22, 2009 05:05 Hello, the tabbar occupies the whole container. So, please that contenedorPestanias div has the desired size. Possibly issue is caused by iframes below the container. |