checkbox_nocheck.html
3.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE> ZTREE DEMO - no checkbox</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,
nocheckInherit: true
},
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:"鏃?checkbox 1-1-1", nocheck:true},
{ id:112, pId:11, name:"闅忔剰鍕鹃€?1-1-2"},
{ id:12, pId:1, name:"鏃?checkbox 1-2", nocheck:true, open:true},
{ id:121, pId:12, name:"鏃?checkbox 1-2-1"},
{ id:122, pId:12, name:"鏃?checkbox 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"}
];
function nocheckNode(e) {
var zTree = $.fn.zTree.getZTreeObj("treeDemo"),
nocheck = e.data.nocheck,
nodes = zTree.getSelectedNodes();
if (nodes.length == 0) {
alert("璇峰厛閫夋嫨涓€涓妭鐐?);
}
for (var i=0, l=nodes.length; i<l; i++) {
nodes[i].nocheck = nocheck;
zTree.updateNode(nodes[i]);
}
}
$(document).ready(function(){
$.fn.zTree.init($("#treeDemo"), setting, zNodes);
$("#nocheckTrue").bind("click", {nocheck: true}, nocheckNode);
$("#nocheckFalse").bind("click", {nocheck: false}, nocheckNode);
});
//-->
</SCRIPT>
</HEAD>
<BODY>
<h1>Checkbox nocheck 婕旂ず</h1>
<h6>[ 鏂囦欢璺緞: excheck/checkbox_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銆乻etting 閰嶇疆淇℃伅璇存槑</h2>
<ul class="list">
<li>杩欎釜 Demo 鍙畝鍗曟紨绀?nocheck 鐨勪娇鐢ㄦ柟娉曪紝璇︾粏閰嶇疆淇℃伅璇峰弬鑰?鈥楥heckbox 鍕鹃€夋搷浣溾€?/li>
<li class="highlight_red">setting.check.nocheckInherit 鍙互璁剧疆瀛愯妭鐐硅嚜鍔ㄧ户鎵跨埗鑺傜偣鐨?nocheck 灞炴€э紝璇︾粏璇峰弬瑙?API 鏂囨。涓殑鐩稿叧鍐呭</li>
<li><p>璇曡瘯鐪嬶細<br/>
[ <a id="nocheckTrue" href="#" title="set checkbox to be hidden." onclick="return false;">闅愯棌</a> ]
[ <a id="nocheckFalse" href="#" title="set checkbox to be show." onclick="return false;">鏄剧ず</a> ]
</li>
</ul>
</li>
<li class="title"><h2>2銆乼reeNode 鑺傜偣鏁版嵁璇存槑</h2>
<ul class="list">
<li class="highlight_red">1)銆佸鏋滄煇鑺傜偣涓嶆樉绀?checkbox锛岃璁剧疆 treeNode.nocheck 灞炴€э紝璇︾粏璇峰弬瑙?API 鏂囨。涓殑鐩稿叧鍐呭</li>
<li>2)銆佸叾浠栬鍙傝€?鈥楥heckbox 鍕鹃€夋搷浣溾€?/li>
</ul>
</li>
</ul>
</div>
</div>
</BODY>
</HTML>