Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Andrew McCombe on Feb 27, 2008 05:44
open dhtmlx forum
Image and link

Hi

Is it possible to have an image with a link defined?

example:

<rows>
<head>
<column width="25" type="img,link" align="center" color="white">Edit</column>
</head>
<row id="1234">
<cell><![CDATA[/im/icon/edit.gif^http://www.iwebsolutions.co.uk]]></cell>
</row>
</rows>

I have tried this but am getting an error with the type"img,link" in the column type definition.

Thanks
Andrew McCombe
iWeb Solutions
Answer posted by Support on Feb 27, 2008 08:40
actually cell type img already includes link functionality

<rows>
<head>
<column width="25" type="img" align="center" color="white">Edit</column>
</head>
<row id="1234">
<cell>/im/icon/edit.gif^alttext^http://www.iwebsolutions.co.uk^_blank</cell>
</row>
</rows>