How to display a URL inside grid cell

I have to display a URL in the some of the grid cells and those should be hyperlinked.
I am loading data from XML format. Is there a special column type for URL’s ?

Define cell type as “ro” and put a complete html link into CDATA.

<cell><![CDATA[<a href='{URL}' target='_blank'>Hello World</a>]]></cell>

Thanks a ton for the quick reply! :slight_smile: