Why is the height of my gird so big???

Hi, can you possibly help me.



I’m making a property website and i’m using your grid to store my locations which are taken from a DB. Can you please view this site in IE7. The url is: northwood.itproz.co.uk/index.php … &Itemid=12.



For some reason the height of the grid is extremely large even though there are no field to fill, do you have any idea why?



Thanks in advanced.

You have not specified any initial size for the grid



If you need to have grid with auto-height and auto-width, you still need to defined some intial dimensions

and add next lines to the grid’s init.
mygrid.init();
mygrid.enableAutoHeight(true);
mygrid.enableAutoWidth(true);


Thanks,
works like a charm.<o:p></o:p>



<o:p> </o:p>


mygrid.setHeader("
, Location, Postcode");<o:p></o:p>



mygrid.setInitWidths(“30,120,70”)<o:p></o:p>


mygrid.setColAlign(“center,left,left”)<o:p></o:p>


<o:p> </o:p>


Is it
possible to set percentage widths for the grid.<o:p></o:p>



<o:p> </o:p>


For
instances<o:p></o:p>



<o:p> </o:p>


mygrid.setInitWidths(“10%,60%,30%”)<o:p></o:p>


<o:p> </o:p>


and is
there a way that I can make the background completely transparent, so I can see
the graphic behind the table?<o:p></o:p>



<o:p> </o:p>


Thanks for
you help.<o:p></o:p>



<o:p> </o:p>


Mac<o:p></o:p>

mygrid.setInitWidths(“10%,60%,30%”)
mygrid.setInitWidthsP(“10,60,30”)
beware, that percent based width not compatible with enableAutoWidth mode

>>and is there a way that I can make the background completely transparent
dhtmlxgrid.css need to be updated.
div.gridbox .objbox {
background-color:white; //<= this line need to be removed