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

时间:2010-04-06 13:27:47

标签: tree extjs hyperlink

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

1 个答案:

答案 0 :(得分:7)

在节点上使用href config属性:

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