views:

245

answers:

1

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
hm didnt even know this existed, nice one ^^ made my post completely worthless :D
Nexum