Categories | Question details Back To List | ||
div on the bottom of the grid Hello, I have problem with the grid display on IE6. I use dhtmlXGrid PRO 1.5 Here is my HTML code: <!-- TABLE CHRONO DIV --> <div id="gridboxChrono" style="background-color:red;width:100%;"></div> <div id="recinfoAreaChrono"></div> and my js: gridChrono = new dhtmlXGridObject('gridboxChrono'); gridChrono.enablePagingWT(true,10,3,'recinfoAreaChrono'); gridChrono.setHeader("Nom,Libellé,Valeur Courante,,"); gridChrono.setInitWidths("150,*,100,30,30"); gridChrono.setColAlign("left,left,center,center,center"); gridChrono.setColTypes("ro,ro,ro,img,img"); gridChrono.enableTooltips("false"); gridChrono.setOnRowSelectHandler(doOnRowSelectHandlerChrono,true); gridChrono.setOnLoadingStart(showLoadingDiv); gridChrono.setOnLoadingEnd(hideLoadingDiv); gridChrono.enableAutoHeigth("true"); gridChrono.init(); gridChrono.enableAlterCss("even","uneven"); gridChrono.loadXML("ajax/gridChrono.php?site="+site+"&fct="+fct); The problem is that I have a div on the bottom of my grid but just on IE not on firefox... Thanks in advance. Answer posted by Support on May 23, 2008 03:14 The same code snippet works fine in both IE and FF in our case ( sample sent by email ) Plese be sure that you included all necessary js and css files. |