Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted on Aug 05, 2008 05:20
open dhtmlx forum
header

I am using grid version 1.5 with auot height and auto width properties set to true. The grid sking is gray and i have the grid placed like this:

<table>
<tr>
<td><div id="mygrid"></div><td>
<td><img id="im1" alt="1stImage" src="../img1.jpeg" /> <br/>
<img id="im2" alt="2ndImage" src="../img1.jpeg" />
<td>
</tr>
</table>

I want these two images img1 and img2 to be placed to the right side of the grid. But when i do this the grid header disappears. What am I doing wrong?
Answer posted by Support on Aug 05, 2008 08:04
You need to specify any starting width|height 
     <td><div id="mygrid" style='width:1px; height:1px;'></div><td>  
The values will be replaced with actual height | width after grid initialization