如何在ext js中添加超链接到树的特定节点

vis*_*sha 1 tree extjs hyperlink

如何在extjs中添加超链接到树的特定节点我可以添加超链接和如何?

Jon*_*ian 7

href在节点上使用config属性:

{
  text: "Go to example.com",
  leaf: true,
  href: "http://example.com"
}
Run Code Online (Sandbox Code Playgroud)