Categories | Question details Back To List | ||
Grid in IE7 I am not able to focus (type) into the input object if it is located exactly under the grid. The problem occurs only with IE7. I have tried different <!DOCTYPE syntax but non of them seems to work. The sample of the code is bellow. Thank you <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <link rel="STYLESHEET" type="TEXT/CSS" href="../dhtmlx/dhtmlxGrid/codebase/dhtmlxgrid.css" ></link> <!--grid--> <script language="JavaScript" src="../dhtmlx/dhtmlxGrid/codebase/dhtmlxcommon.js"></script> <script language="JavaScript" src="../dhtmlx/dhtmlxGrid/codebase/dhtmlxgrid.js"></script> <!--grid--> </head> <body onload="" style="padding: 0px; margin:0px" > <form name="custom" action="" style="padding:0;margin:0px;"> <table width="99%"> <tr> <td> <div id="testGridId" style="width: 100%; height: 107px;"></div> <script type="text/javascript"> grid = new dhtmlXGridObject('testGridId'); grid.setImagePath('../dhtmlx/dhtmlxGrid/codebase/imgs/'); grid.setHeader('Temp'); grid.setInitWidths('110'); grid.init(); </script> </td> </tr> <tr> <td> <input name="testInput" id="testInputId" type="text" value=""/> </td> </tr> </table> </form> </body> </html> Answer posted by dhxSupport on Feb 17, 2009 01:43 This bug confirmed and will be fixed at the next dhtmlxGrid build. If you need changes immediately please contact support@dhtmlx.com and provide your ref. ID. |