XML Tree : Tree « GUI Components « JavaScript DHTML

JavaScript DHTML
1. Ajax Layer
2. Data Type
3. Date Time
4. Development
5. Document
6. Dojo toolkit
7. Event
8. Event onMethod
9. Ext JS
10. Form Control
11. GUI Components
12. HTML
13. Javascript Collections
14. Javascript Objects
15. Javascript Properties
16. jQuery
17. Language Basics
18. Mochkit
19. Mootools
20. Node Operation
21. Object Oriented
22. Page Components
23. Rico
24. Scriptaculous
25. Security
26. SmartClient
27. Style Layout
28. Table
29. Utilities
30. Window Browser
31. YUI Library
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
JavaScript DHTML » GUI Components » Tree 
XML Tree
 
/*
Mastering JavaScript, Premium Edition
by James Jaworski 

ISBN:078212819X
Publisher Sybex CopyRight 2001
*/



<html><head>
      <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
   <title>Tree Component</title>
   <style type="text/css" >
BLOCKQUOTE {
margin-top: -5;
margin-bottom: -5;
}
TABLE {
margin-top: 0;
margin-bottom: 0;
}
A:link, A:visited {
  color: black;
  text-decoration: none;
}   
   </style>
   <script language="JavaScript">
var nodes = new Array("XML, XSLT, and JavaScript Tree Component",
"Features",
"The nodes and structure of the tree are specified in XML.",
"An XSLT stylesheet enables the tree to be rendered in HTML.",
"The display and operation of the tree is handled in JavaScript.",
"Design""The tree component consists of the following files:",
"tree.xml""Defines the tree's text and structure.",
"tree.dtd""Provides a DTD for tree.xml.",
"tree.xsl""Transforms the tree into HTML and JavaScript.",
"tree.js""Defines the Tree object.",
"tree.css""Styles the transformed tree."
)
var branches = new Array(new Array(0,1),new Array(1,2),
new Array(1,3),new Array(1,4),new Array(0,5),new Array(5,6),
new Array(6,7),new Array(7,8),new Array(6,9),new Array(9,10),
new Array(6,11),new Array(11,12),new Array(6,13),new Array(13,14),
new Array(6,15),new Array(15,16),new Array(-1,-1))
</script>
<script language="JavaScript" >
   
var tree = createTree()
   
function createTree() {
 branchID = 0
 var subtrees = new Array()
 for(var i=0; i<nodes.length; ++i)
  subtrees[inew Tree(nodes[i])
 for(var i=0; i<branches.length - 1; ++i)
  subtrees[branches[i][0]].addBranch(subtrees[branches[i][1]])
 return subtrees[0]
}
function Tree(root) {
 this.text = root
 this.id = branchID
 ++branchID
 this.expanded = true
 this.branches = new Array()
 this.addBranch = Tree_addBranch
 this.changeState = Tree_changeState
 this.handleClick = Tree_handleClick
 this.processClick = Tree_processClick
 this.display = Tree_display
 this.getTreeString = Tree_getTreeString
}
function Tree_addBranch(tree) {
 this.branches[this.branches.length= tree
}
function Tree_changeState() {
 this.expanded = !this.expanded
}
function Tree_handleClick(branch) {
 this.processClick(branch)
 var d = document.getElementById("tree")
 if(d != nulld.innerHTML = this.getTreeString()
}
function Tree_processClick(branch) {
 if(this.id == branchthis.changeState()
 else {
  for(var i=0; i<this.branches.length; ++i)
   this.branches[i].processClick(branch)
 }
}
function Tree_getTreeString() {
 var s = "<blockquote>"
 s += '<table border="0">'
 s += "<tr>"
 s += "<td>"
 if(this.branches.length > 0)
  s += '<a href="javascript:tree.handleClick('+this.id+')">+</a>'
 else s += "-"
 s += "</td>"
 s += "<td>"
 s += this.text
 s += "</td>"
 s += "</tr>"
 s += "</table>"
 if((this.branches.length > 0&& (this.expanded == true)) {
  for(var i=0; i<this.branches.length; ++i)
   s += this.branches[i].getTreeString()
 }
 s += "</blockquote>"
 return s
}
function Tree_display() {
 document.writeln(this.getTreeString())
}

</script>
</head>
<body>
<hr>
<div id="tree"><script language="JavaScript">
tree.display()
</script>
</div>
<hr>
</body>
</html>


           
         
  
Related examples in the same category
1. Explorer based on tree
2. Yahoo! UI Library - Tree Control
3. Yahoo! UI Library - Tree Control 2
4. Tree Control
5. Dynamic TreeView Example
6. Yahoo! UI Library - Tree Control 3
7. Yahoo! UI Library - Tree Control 4
8. Yahoo! UI Library - Tree Control 5
9. Build a tree in JavaScript
10. Delete, insert items in a tree
11. Tree selection action handler
12. Expand, Collapse, Close, Open selected Tree item and branch
13. Change Tree Node Color and Icon
14. Checkbox tree node: checked, unchecked, get the checked items
15. Change tree expand and collapse icons
16. Drag and Drop between trees
17. Build tree from xml
18. Tree navigation bar
19. Navigation Tree
20. Navigation Tree menu based on XML
21. Building Collapsible Trees
22. Nano Tree
23. Tree which accepts drag and drop event in JavaScript (IE)
24. Simple Tree in Javascript
25. Elegant simple tree
26. folder tree static
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.