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
|
<html>
<head>
<title></title>
<link rel="stylesheet" href="tree/screen.css">
<link rel="stylesheet" href="tree/jquery.treeview.css">
<script src="tree/jquery.js" type="text/javascript"></script>
<script src="tree/jquery.cookie.js" type="text/javascript"></script>
<script src="tree/jquery.treeview.js" type="text/javascript"></script>
<script>
$(document).ready(function(){
$("#browser").treeview({
control: "#tree_control_",
collapsed: true,
animated: 100
});
});
</script>
<style>
body{margin:4px 8px;}
a { text-decoration: none;}
a:link, a:visited {color: blue;}
a:hover {color: red;}
</style>
</head>
<body>
<table border="0" cellspacing="0" style="font-size: 11px;">
<tr>
<td>
<div id="tree_control_" style="padding:5px">
<a title="Collapse the entire tree below" href="#"><img src="tree/images/minus.gif" /> Collapse All</a>
<a title="Expand the entire tree below" href="#"><img src="tree/images/plus.gif" /> Expand All</a>
</div>
</td>
<td><a target="_blank" href="" id="twiki" style="vertical-align: middle;"><img src="tree/twiki.gif" /></a></td>
</tr>
</table>
<!-- Tree -->
<ul id="browser" class="filetree treeview">
</ul>
<!-- Tree -->
</body>
</html>
|