Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Swapnil Deshmukh on Aug 06, 2008 06:15
open dhtmlx forum
Tree Gride hyperlink

I have populated the tree in the tree gide and I want to give the link to the every child node in first first coloum. E.g. link might like this <a href="http://loaclhost/sep/project_report.jsp?project_id=609358">Project Name</a>
Answer posted by Support on Aug 06, 2008 07:33
You can done it directly in XML
Instead of 
<row id="some"> 
       <cell>Project Name</cell>

You can use
<row id="some"> 
       <cell><![CDATA[ <a href="http://loaclhost/sep/project_report.jsp?project_id=609358">Project Name</a> ]]></cell>