Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Mauricio Bustamante on Dec 08, 2008 08:43
open dhtmlx forum
How add a simple link

Hey i need to add a link inside each row, i mean a cell which is "link" type... something like:
<rows>
<row>
<cell>Details Url=www.detailsofmycar.com</cell>
</row>
</rows>
Answer posted by Support on Dec 08, 2008 08:45
You can 
a) use link column type

grid.setColTypes("link,....

<cell>label^http://some.com</cell>

b) use inline HTML 

<cell type='ro'><![CDATA[ <a href='http://some.com'>label</a>  ]]></cell>