Categories | Question details Back To List | ||
Html in cell value I wanted to include some html in a table cell, sent from my server via the xml table method. Specifically, I want a relative link to another url. In another application, I would like to insert images that would link to actions based on the icon clicked. 1. what should the cell type be? My html does not appear in text mode. 2. what version/option of the product do i need to accomplish this? TIA. Answer posted by dhxSupport on Feb 26, 2009 03:03 You can insert any html into the grid's cell, this html should be stored inside CDATA: <cell><![CDATA[<a href="#"><img src="img.gif" /></a>]]></cell> This feature availible from first dhtmxGrid version |