vishvesha
vishvesha

Reputation: 121

how to add hyperlink to particular node of tree in ext js

how to add hyperlink to a particular node of tree in extjs can i add hyperlink and how??

Upvotes: 1

Views: 2190

Answers (1)

Jonathan Julian
Jonathan Julian

Reputation: 12272

Use the href config attribute on the node:

{
  text: "Go to example.com",
  leaf: true,
  href: "http://example.com"
}

Upvotes: 7

Related Questions