dhtmlXgrid- html formatting in cell.

Hi,



Is there any way of using html tags in a cell to allow formating of the text? in particular I would like to insert
between text items in a particular column so that they appear as a list in the cell.



inserting the tag as is causes a “not valid XML error” on loading.



You need to correctly escape HTML tags in XML

<![CDATA[  some
some  ]]>

or


  some <br/> some

Please beware that br tag will work correctly in all browsers only if multiline mode enabled in grid
    grid.enableMultiline(true)