Categories | Question details Back To List | ||
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> |