Extjs如何实现单击展开Tree的子节点 5

用了singleClickExpand:true,不行啊用了listeners:{"click":function(node,e){if(node.expanded==f... 用了singleClickExpand: true,不行啊
用了listeners: {
"click": function(node, e) {
if (node.expanded == false) {
node.expand();
}
else {
node.collapse();
}
}
},
也不行啊!郁闷了!

我的代码如下:
var callMenu = new Ext.TreePanel(
{
border: false,
rootVisible: false,
useArrows: true,
root: {
expanded: true,
children: [{
expanded: true,
text: "行政科室",
children: [
{ text: "科室1", leaf: true },
{ text: "科室2", leaf: true },
{ text: "科室3", leaf: true },
{ text: "科室4", leaf: true },
{ text: "科室5", leaf: true },
{ text: "科室6", leaf: true },
{ text: "科室7", leaf: true },
{ text: "科室8", leaf: true },
{ text: "科室9", leaf: true },
{ text: "科室10", leaf: true}]
}, {
expanded: true,
text: "医技科室",
children: [
{ text: "科室1", leaf: true },
{ text: "科室2", leaf: true },
{ text: "科室3", leaf: true },
{ text: "科室4", leaf: true },
{ text: "科室5", leaf: true },
{ text: "科室6", leaf: true },
{ text: "科室7", leaf: true },
{ text: "科室8", leaf: true },
{ text: "科室9", leaf: true },
{ text: "科室10", leaf: true}]
}
]
}
});
我用的是4.0的库,一切正常就是不能实现单击展开树,求解
展开
 我来答
luffy1201
2011-05-22 · TA获得超过1523个赞
知道小有建树答主
回答量:401
采纳率:0%
帮助的人:574万
展开全部
这样做就行~~~
listeners : {
click : function(n) {
if (n.leaf) {

} else {
viewTree.expandPath(viewTree.getNodeById(n.id).getPath());// 展开某一节点
}
}
},
追问
试了,不行,我找到一个办法可以单击展开或者单击收回节点,但是问题是4.0的API里没有判断当前节点是否为展开状态,郁闷,和3.0不一样啊!
albert522
2012-08-17
知道答主
回答量:3
采纳率:0%
帮助的人:4690
展开全部
唉,我也在解决这个问题,有答案了没,求解决方案 我用的也是4.0的
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式