带复选框(checkbox)的树

该例子可以满足我们的一般需求。很多时候我们需要用到带checkbox的树。
其实加个checkbox框先简单,只需要在返回来的json数据中加上 checked 项(为true/false)。要实现我们想要的选中父节点的checkbox后,自动选中子节点也很简单,只需要加上下面这一段代码就可以了。


tree.on('checkchange', function(node, checked) {     
        node.expand();     
        node.attributes.checked = checked;     
        node.eachChild(function(child) {     
            child.ui.toggleCheck(checked);     
            child.attributes.checked = checked;     
            child.fireEvent('checkchange', child, checked);     
        });     
    }, tree);  

<html>  
<head>  
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">  
<title>带复选框(checkbox)的树</title>  
<link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />  
<script type="text/javascript" src="../../adapter/ext/ext-base.js"></script>  
<script type="text/javascript" src="../../ext-all.js"></script>  
<link rel="stylesheet" type="text/css" href="../../examples/examples.css" />  
<script type="text/javascript" src="../../examples.js"></script>  
<script type="text/javascript">  
Ext.onReady(function(){  
    Ext.BLANK_IMAGE_URL = "../../resources/images/default/s.gif"      
    // shorthand  
    var Tree = Ext.tree;  
      
    var tree = new Tree.TreePanel({  
        el:'tree-div',  
        useArrows:true,  
        autoScroll:true,  
        animate:true,  
        enableDD:true,  
        containerScroll: true,   
        loader: new Tree.TreeLoader({  
            dataUrl:'0005_checkbox_reorder_tree.php'  
        })  
    });  
      
    tree.on('checkchange', function(node, checked) {     
        node.expand();     
        node.attributes.checked = checked;     
        node.eachChild(function(child) {     
            child.ui.toggleCheck(checked);     
            child.attributes.checked = checked;     
            child.fireEvent('checkchange', child, checked);     
        });     
    }, tree);    
  
    // set the root node  
    var root = new Tree.AsyncTreeNode({  
        text: 'Ext JS',  
        draggable:false,  
        id:'source'  
    });  
    tree.setRootNode(root);  
  
    // render the tree  
    tree.render();  
    root.expand();  
});  
</script>  
  
</head>  
<body>  
<h1>带复选框(checkbox)的树</h1>  
<p></p>  
<p>改编自ExtJs 自带的tree例子,选中父节点后,所有子节点会自动选上。</p>  
  
<p>该例子点击父节点如果速度过快,有时候不会自动选中子节点! </p>  
  
<div id="tree-div" style="overflow:auto; height:300px;width:250px;border:1px solid #c3daf9;"></div>  
  
</body>  
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值