how to add hyperlink to a particular node of tree in extjs can i add hyperlink and how??
+4
A:
Use the href
config attribute on the node:
{
text: "Go to example.com",
leaf: true,
href: "http://example.com"
}
Jonathan Julian
2010-04-06 13:51:49
hm didnt even know this existed, nice one ^^ made my post completely worthless :D
Nexum
2010-04-06 13:53:24