Categories | Question details Back To List | ||
dhtmlxgrid - can i add a column with an image along with text I would like to add an image to a cell that contains text; is this possible? I have a text column where for some of the rows I would like to add a download image which triggers the file download action. Thanks! Answer posted by Stanislav (support) on Jan 15, 2010 09:22 You can use "ro" column typs and any html content in the cell <cell><![CDATA[ <a href='download/some.file' target='_blank'> <img src='some.gif' > some text </a> ]]></cell> |