ExtJS4树面板问题
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需使用代码的简单版本:
Just use simple version of your code: