ExtJS4树面板问题

发布于 2024-11-26 14:27:55 字数 614 浏览 2 评论 0原文

我是 ExtJS4 的新手。我们在应用程序中使用树面板。如果我们选择父节点,则选择该父节点下的子节点。但是如果我们取消选择父节点,我需要取消选择该特定父节点下的子节点。

我的代码:

var tree = Ext.create('Ext.tree.Panel',{
id : "tree",
height : 300,
store : treeStore,
rootVisible : false,
hideHeaders : true,
listeners : {
checkchange : function(node,check){
var ex;
ex = node.get('id');
if(!check && 'un' || '')
{
alert('unchecked');
}else if(check){
node.cascadeBy(function(child){
child.set("checked",check);
});
alert('child nodes checked');
}
}
}
});

如果我们取消选中父节点,我需要取消选中子节点。

我在这个问题上做了很多尝试。请帮助我。

如有帮助,将不胜感激。

问候,
库沙尔

I am new to ExtJS4.We are using treepanel in our application.If we select the parent node then the child nodes under that parent are selecting.But if we unselect the parent node i need to unselect hte child nodes under that particular parent node.

My code:

var tree = Ext.create('Ext.tree.Panel',{
id : "tree",
height : 300,
store : treeStore,
rootVisible : false,
hideHeaders : true,
listeners : {
checkchange : function(node,check){
var ex;
ex = node.get('id');
if(!check && 'un' || '')
{
alert('unchecked');
}else if(check){
node.cascadeBy(function(child){
child.set("checked",check);
});
alert('child nodes checked');
}
}
}
});

Here i need to uncheck the child nodes if we uncheck the parent node.

I am trying a lot on this issue.Please help me.

Help would be appreciated.

Regards,
Kushal

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

血之狂魔 2024-12-03 14:27:55

只需使用代码的简单版本:

checkchange : function(node,check){
    node.cascadeBy(function(child){
        child.set("checked",check);
    });
}

Just use simple version of your code:

checkchange : function(node,check){
    node.cascadeBy(function(child){
        child.set("checked",check);
    });
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文