1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <!DOCTYPE html>
- <HTML>
- <HEAD>
- <TITLE> ZTREE DEMO - no radio</TITLE>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <link rel="stylesheet" href="../../../css/demo.css" type="text/css">
- <link rel="stylesheet" href="../../../css/zTreeStyle/zTreeStyle.css" type="text/css">
- <script type="text/javascript" src="../../../js/jquery-1.4.4.min.js"></script>
- <script type="text/javascript" src="../../../js/jquery.ztree.core-3.5.js"></script>
- <script type="text/javascript" src="../../../js/jquery.ztree.excheck-3.5.js"></script>
- <!--
- <script type="text/javascript" src="../../../js/jquery.ztree.exedit-3.5.js"></script>
- -->
- <SCRIPT type="text/javascript">
- <!--
- var setting = {
- check: {
- enable: true,
- chkStyle: "radio",
- radioType: "level"
- },
- data: {
- simpleData: {
- enable: true
- }
- }
- };
- var zNodes =[
- { id:1, pId:0, name:"随意勾选 1", open:true},
- { id:11, pId:1, name:"随意勾选 1-1", open:true},
- { id:111, pId:11, name:"无 radio 1-1-1", nocheck:true},
- { id:112, pId:11, name:"随意勾选 1-1-2"},
- { id:12, pId:1, name:"无 radio 1-2", nocheck:true, open:true},
- { id:121, pId:12, name:"无 radio 1-2-1"},
- { id:122, pId:12, name:"无 radio 1-2-2"},
- { id:2, pId:0, name:"随意勾选 2", checked:true, open:true},
- { id:21, pId:2, name:"随意勾选 2-1"},
- { id:22, pId:2, name:"随意勾选 2-2", open:true},
- { id:221, pId:22, name:"随意勾选 2-2-1", checked:true},
- { id:222, pId:22, name:"随意勾选 2-2-2"},
- { id:23, pId:2, name:"随意勾选 2-3"}
- ];
-
- $(document).ready(function(){
- $.fn.zTree.init($("#treeDemo"), setting, zNodes);
- });
- //-->
- </SCRIPT>
- </HEAD>
- <BODY>
- <h1>Radio nocheck 演示</h1>
- <h6>[ 文件路径: excheck/radio_nocheck.html ]</h6>
- <div class="content_wrap">
- <div class="zTreeDemoBackground left">
- <ul id="treeDemo" class="ztree"></ul>
- </div>
- <div class="right">
- <ul class="info">
- <li class="title"><h2>1、setting 配置信息说明</h2>
- <ul class="list">
- <li>这个 Demo 只简单演示 nocheck 的使用方法,详细配置信息请参考 ‘Radio 勾选操作’</li>
- <li class="highlight_red">setting.check.nocheckInherit 可以设置子节点自动继承父节点的 nocheck 属性,详细请参见 API 文档中的相关内容</li>
- </ul>
- </li>
- <li class="title"><h2>2、treeNode 节点数据说明</h2>
- <ul class="list">
- <li class="highlight_red">1)、如果某节点不显示 radio,请设置 treeNode.nocheck 属性,详细请参见 API 文档中的相关内容</li>
- <li>2)、其他请参考 ‘Radio 勾选操作’</li>
- </ul>
- </li>
- </ul>
- </div>
- </div>
- </BODY>
- </HTML>
|