I want to insert a image to every column of dhtmlxGrid. How

I want to insert a image to every column of
dhtmlxGrid. How to do that?


dhtmlxGrid threats content as HTML, so you can insert
anything in a row.


grid.addRow(1,[""]);



or in case of using xml



           

                       
<![CDATA[ ]]>

By default height of grid row is fixed, so you also
probably will need to call


           
grid.enableMultiline(true);

after grid initialization