<!DOCTYPE html>
|
<HTML>
|
<HEAD>
|
<TITLE> ZTREE DEMO - 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.js"></script>
|
<script type="text/javascript" src="../../../js/jquery.ztree.excheck.js"></script>
|
<!--
|
<script type="text/javascript" src="../../../js/jquery.ztree.exedit.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:"can check 1", open:true},
|
{ id:11, pId:1, name:"can check 1-1", open:true},
|
{ id:111, pId:11, name:"can check 1-1-1"},
|
{ id:112, pId:11, name:"can check 1-1-2"},
|
{ id:12, pId:1, name:"can check 1-2", open:true},
|
{ id:121, pId:12, name:"can check 1-2-1"},
|
{ id:122, pId:12, name:"can check 1-2-2"},
|
{ id:2, pId:0, name:"can check 2", checked:true, open:true},
|
{ id:21, pId:2, name:"can check 2-1"},
|
{ id:22, pId:2, name:"can check 2-2", open:true},
|
{ id:221, pId:22, name:"can check 2-2-1", checked:true},
|
{ id:222, pId:22, name:"can check 2-2-2"},
|
{ id:23, pId:2, name:"can check 2-3"}
|
];
|
|
var code;
|
function setCheck() {
|
var type = $("#level").attr("checked")? "level":"all";
|
setting.check.radioType = type;
|
showCode('setting.check.radioType = "' + type + '";');
|
$.fn.zTree.init($("#treeDemo"), setting, zNodes);
|
}
|
function showCode(str) {
|
if (!code) code = $("#code");
|
code.empty();
|
code.append("<li>"+str+"</li>");
|
}
|
|
$(document).ready(function(){
|
setCheck();
|
$("#level").bind("change", setCheck);
|
$("#all").bind("change", setCheck);
|
});
|
//-->
|
</SCRIPT>
|
</HEAD>
|
|
<BODY>
|
<h1>Radio Operation</h1>
|
<h6>[ File Path: excheck/radio.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, Explanation of setting</h2>
|
<ul class="list">
|
<li class="highlight_red">Must set setting.check attributes, see the API documentation for more related contents.</li>
|
<li><p>group range of radio: <br/><input type="radio" id="level" class="radio first" name="radioGroup" checked /><span>within the same level</span>
|
<input type="radio" id="all" class="radio" name="radioGroup"/><span>within the whole tree</span><br/>
|
<ul id="code" class="log" style="height:20px;"></ul></p>
|
</li>
|
</ul>
|
</li>
|
<li class="title"><h2>2, Explanation of treeNode</h2>
|
<ul class="list">
|
<li class="highlight_red">1), If you need to initialize the node is checked, please set treeNode.checked attribute. See the API documentation for more related contents.</li>
|
<li class="highlight_red">2), If you need to initialize the node don't show radio, please set treeNode.nocheck attribute. See the API documentation for more related contents.</li>
|
<li class="highlight_red">3), If you need to change 'checked' to other attribute, please set setting.data.key.checked attribute. See the API documentation for more related contents.</li>
|
<li>4), By the way, please see the API documentation for 'treeNode.checkedOld / getCheckStatus / check_Child_State / check_Focus'.</li>
|
</ul>
|
</li>
|
</ul>
|
</div>
|
</div>
|
</BODY>
|
</HTML>
|