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 an开发者_运维百科d how??
Use the href
config attribute on the node:
{
text: "Go to example.com",
leaf: true,
href: "http://example.com"
}
精彩评论