Newer
Older
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>Fancytree - WAI-ARIA Tree View</title>
<script src="../lib/jquery.js"></script>
<script src="../lib/jquery-ui.custom.js"></script>
<link href="../src/skin-win8/ui.fancytree.css" rel="stylesheet">
<script src="../src/jquery.fancytree.js"></script>
<!-- Start_Exclude: This block is not part of the sample code -->
<link href="../lib/prettify.css" rel="stylesheet">
<script src="../lib/prettify.js"></script>
<link href="sample.css" rel="stylesheet">
<script src="sample.js"></script>
<!-- End_Exclude -->
<style type="text/css">
</style>
<script type="text/javascript">
$(function(){
$("#tree").fancytree({
aria: true,
// selectMode: 1,
checkbox: true,
// generateIds: true,
quicksearch: true,
source: { url: "ajax-tree-products.json" },
keydown: function(event, data) {
// WAI-ARIA suggests that numpad '*' expands all siblings at
// the current node's level.
switch( $.ui.fancytree.eventToString(event) ) {
case "*":
$.each(data.node.parent.children, function(i, node){
node.setExpanded({noAnimation: true});
});
break;
};
}
});
});
</script>
</head>
<body class="example">
<h1>Example: WAI-ARIA Tree View</h1>
<div class="description">
<p>
This Fancytree Tree View has
<a href="https://www.w3.org/TR/wai-aria-practices/#TreeView">WAI-ARIA</a>
enabled.<br>
<strong>Note:</strong> please
<a href="https://github.com/mar10/fancytree/issues/656">provide feedback</a>
if you have suggestions for improvement.
</p>
<p>
See also the <a href="sample-aria-treegrid.html">ARIA Tree Grid example</a>.
</p>
</div>
<div>
<label for="lblBefore">Text 1<input type="text" id="lblBefore"></label>
<div id="tree">
</div>
<label for="lblAfter">Text 2</label><input type="text" id="lblAfter">
</div>
<!-- Start_Exclude: This block is not part of the sample code -->
<hr>
<p class="sample-links no_code">
<a class="hideInsideFS" href="https://github.com/mar10/fancytree">jquery.fancytree.js project home</a>
<a class="hideOutsideFS" href="#">Link to this page</a>
<a class="hideInsideFS" href="index.html">Example Browser</a>
<a href="#" id="codeExample">View source code</a>
</p>
<pre id="sourceCode" class="prettyprint" style="display:none"></pre>
<!-- End_Exclude -->
</body>
</html>