Reputation: 121
how to add hyperlink to a particular node of tree in extjs can i add hyperlink and how??
Upvotes: 1
Views: 2190
Reputation: 12272
Use the href
config attribute on the node:
{
text: "Go to example.com",
leaf: true,
href: "http://example.com"
}
Upvotes: 7