YUI recommends YUI 3.

YUI 2 has been deprecated since 2011. This site acts as an archive for files and documentation.

YUI Library Home

YUI Library Examples: TreeView Control: Folder-Style TreeView Design

TreeView Control: Folder-Style TreeView Design

This example demonstrates how you can transform the look of your TreeView Control simply by changing the CSS rules on the page. Here, the TreeView instance has a "folder style" applied to it such that branch nodes appear as open or closed folders depending on their expand/collapse state.

 label-0
 label-1
 label-2
 label-3

Implementing the Folder Style for TreeVeiw

The key change we've made in this example of the TreeView Control is that we've applied a supplementary CSS file:

1<link rel="stylesheet" type="text/css" href="assets/css/folders/tree.css"
view plain | print | ?

This CSS redefines the look of branch nodes so they appear as folders. The folder-style CSS accompanies your YUI download and can be found in the yui/examples/treeview/assets directory.

Beyond the link element referenced above, the following markup is on the page for this example:

1<!-- Some style for the expand/contract section--> 
2<style> 
3#expandcontractdiv {border:1px dotted #dedede; background-color:#EBE4F2; margin:0 0 .5em 0; padding:0.4em;} 
4#treeDiv1 { background: #fff; padding:1em; margin-top:1em; } 
5</style> 
6 
7<!-- markup for expand/contract links --> 
8<div id="expandcontractdiv"
9    <id="expand" href="#">Expand all</a> 
10    <id="collapse" href="#">Collapse all</a> 
11</div> 
12 
13<div id="treeDiv1"></div> 
view plain | print | ?

Based on that markup, we use the following JavaScript code to create our TreeView instance, populate its nodes, and add expand/collapse functionality:

1//an anonymous function wraps our code to keep our variables 
2//in function scope rather than in the global namespace: 
3(function() { 
4    var tree; //will hold our TreeView instance 
5     
6    function treeInit() { 
7         
8        YAHOO.log("Example's treeInit function firing.""info""example"); 
9         
10        //Hand off ot a method that randomly generates tree nodes: 
11        buildRandomTextNodeTree(); 
12         
13        //handler for expanding all nodes 
14        YAHOO.util.Event.on("expand""click"function(e) { 
15            YAHOO.log("Expanding all TreeView  nodes.""info""example"); 
16            tree.expandAll(); 
17            YAHOO.util.Event.preventDefault(e); 
18        }); 
19         
20        //handler for collapsing all nodes 
21        YAHOO.util.Event.on("collapse""click"function(e) { 
22            YAHOO.log("Collapsing all TreeView  nodes.""info""example"); 
23            tree.collapseAll(); 
24            YAHOO.util.Event.preventDefault(e); 
25        }); 
26    } 
27     
28    //This method will build a TreeView instance and populate it with 
29    //between 3 and 7 top-level nodes 
30    function buildRandomTextNodeTree() { 
31     
32        //instantiate the tree: 
33        tree = new YAHOO.widget.TreeView("treeDiv1"); 
34         
35        //create top-level nodes 
36        for (var i = 0; i < Math.floor((Math.random()*4) + 3); i++) { 
37            var tmpNode = new YAHOO.widget.TextNode("label-" + i, tree.getRoot(), false); 
38             
39            //we'll delegate to another function to build child nodes: 
40            buildRandomTextBranch(tmpNode); 
41        } 
42         
43        //once it's all built out, we need to render 
44        //our TreeView instance: 
45        tree.draw(); 
46    } 
47 
48    //This function adds a random number <4 of child nodes to a given 
49    //node, stopping at a specific node depth: 
50    function buildRandomTextBranch(node) { 
51        if (node.depth < 6) { 
52            YAHOO.log("buildRandomTextBranch: " + node.index); 
53            for ( var i = 0; i < Math.floor(Math.random() * 4) ; i++ ) { 
54                var tmpNode = new YAHOO.widget.TextNode(node.label + "-" + i, node, false); 
55                buildRandomTextBranch(tmpNode); 
56            } 
57        } 
58    } 
59     
60    //When the DOM is done loading, we can initialize our TreeView 
61    //instance: 
62    YAHOO.util.Event.onDOMReady(treeInit); 
63     
64})();//anonymous function wrapper closed; () notation executes function 
view plain | print | ?

Configuration for This Example

You can load the necessary JavaScript and CSS for this example from Yahoo's servers. Click here to load the YUI Dependency Configurator with all of this example's dependencies preconfigured.

YUI Logger Output:

Logger Console

INFO 107ms (+1) 6:55:25 AM:

LogReader instance0

LogReader initialized

INFO 106ms (+1) 6:55:25 AM:

Get

Appending node: ../../../2.x/build/event-mouseenter/event-mouseenter-min.js

INFO 105ms (+0) 6:55:25 AM:

Get

attempting to load ../../../2.x/build/event-mouseenter/event-mouseenter-min.js

INFO 105ms (+105) 6:55:25 AM:

Get

_next: q0, loaded: undefined

INFO 0ms (+0) 6:55:25 AM:

global

Logger initialized

Note: You are viewing this example in debug mode with logging enabled. This can significantly slow performance.

Reload with logging
and debugging disabled.

More TreeView Control Resources:

Copyright © 2011 Yahoo! Inc. All rights reserved.

Privacy Policy - Terms of Service - Copyright Policy - Job Openings