-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathtreeview.html
More file actions
120 lines (107 loc) · 4.45 KB
/
treeview.html
File metadata and controls
120 lines (107 loc) · 4.45 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<script src="js/jquery.js"></script>
<script src="vendor/bootstrap3/js/bootstrap.js"></script>
<link rel="stylesheet" href="vendor/bootstrap3/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="vendor/bootstrap3/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="css/gonrin.treeview.css">
<script src="js/gonrin.core.js"></script>
<script src="js/gonrin.treeview.js"></script>
<script type="text/javascript">
$(function () {
var onNodeChecked = function(event, node){
console.log("onNodeChecked");
console.log(node);
var tree = $("#tree");
if((node != null) && (node.nodes != null)){
for(var i = 0; i < node.nodes.length; i ++){
tree.data("gonrin").checkNode(node.nodes[i].nodeId,{ silent: true });
}
}
}
var onNodeUnchecked = function(event, node){
}
var data = [
{
text: "Parent 1",
state: {
checked: false,
},
nodes: [
{
text: "Child 1",
state: {
checked: false,
},
nodes: [
{
text: "Grandchild 1",
state: {
checked: false,
},
},
{
text: "Grandchild 2",
state: {
checked: false,
},
}
]
},
{
text: "Child 2",
state: {
checked: false,
},
}
]
},
{
text: "Parent 2",
state: {
checked: false,
},
},
{
text: "Parent 3",
state: {
checked: false,
},
},
{
text: "Parent 4",
state: {
checked: false,
},
},
{
text: "Parent 5",
state: {
checked: false,
},
}
];
$("#tree").treeview({
data: data,
//onNodeSelected: $.proxy(self.onItemClick, self),
nodesField: "nodes",
textField: "text",
showIcon: false,
showCheckbox: true,
onNodeChecked: onNodeChecked,
onNodeUnchecked: onNodeUnchecked
});
});
</script>
</head>
<body>
<div class="container">
<div class="row-fluid" id="content" style="margin-top:20px;">
<div id="tree"></div>
</div>
</div>
</body>
</html>