My favorites
▼
|
Sign in
dynatree
Dynatree is a JavaScript dynamic tree view plugin for jQuery with support for persistence, keyboard, checkboxes, drag'n'drop, and lazy loading.
Project Home
Downloads
Export to GitHub
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
305
attachment: dynatree_repro.html
(1.0 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
<html lang="en">
<head> <title>Dynatree - Bug Demo</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.2.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.js"></script>
<link rel="stylesheet" type="text/css" href="http://wwwendt.de/tech/dynatree/src/skin-vista/ui.dynatree.css">
<script type="text/javascript" src="http://dynatree.googlecode.com/svn/trunk/src/jquery.dynatree.js"></script>
<!-- fixed file below -->
<!-- <script type="text/javascript" src="file:/tmp/jquery.dynatree.js"> -->
</script>
<script type="text/javascript">//<![CDATA[
var treeData = [ { title:
"Parent", children: [{title: "Child1", select:true},{
title: "Child2", unselectable: true }] } ];
$(function(){
$("#tree2").dynatree({
checkbox: true,
selectMode: 3,
children: treeData,
});
});
//]]>
</script>
</head>
<body>
<h1>
deselect and select child1, watch parent partsel style
</h1>
<div id="tree2">
</div>
</body>
</html>
Powered by
Google Project Hosting