HTML table to grid

Hi, i was trying to convert a html table into a grid, is it possible to modify a cell height ??, i cannot show a cell within an image inside, i mean, the image appears but i’m not able to modify the cell dimension in order to get a right view of the image, the grid appears like a enableMultiline on false or somethign like that, here is my code:



<?php

echo ‘

’;

                                        echo ’

                                            

                                            

                                            

                                            

                                        ';

                                        do {

                                        

                                        /FOTOS /

                                        $foto=$row[“matnr”];

                                        $existe=file_exists(’…/images/productos/’.$foto.’.jpg’);

                                            if ($existe){

                                                $fotfile=’…/images/productos/’.$foto.’.jpg’;

                                                $fotfilex=1;

                                            }else{

                                                $fotfile=’…/images/productos/nohayphoto.gif’;

                                                $fotfilex=0;

                                            }

                                            

                                        /FOTOS/

                                        

                                        

                                                echo “
";

                                                echo “
";

                                                echo “
";

                                                echo “
”;

                                                }

                                        while ($row = mysql_fetch_array($lista));

                                        echo ’

                                        


                                            Modelo


                                            Descripci�n


                                            Precio Lista $


                                            Foto
”.$row[“matnr”]."”.$row[“maktx”]."”.$row[“kbetr”]."$fotfile
';

                                        ?>

                                        





    







        


    


                                        







/***** i included the next js and css











































many thanks in advance for your reply

Unfortunately we cannot reproduce this issue locally. What version of dhtmlxGrid do you use? Could you please provide full example where we can reproduce this issue including files which you are using to initialize grid and custom skin .css file. (You can send this example directly to the support@dhtmlx.com)

To fix this issue try to call multi line mode before grid was init:
<?php
echo ‘

’;




>>onbeforeinit=“makeMultiline()”>’;




many thanks in advance, the solution was on call multi line on before grid init.