YUI Library Home

YUI Library Examples: TreeView Control: Treeview Node Selection and Checkbox Example

TreeView Control: Treeview Node Selection and Checkbox Example

In this simple example you can see how to do node selection in the TreeView Control.

Tree with highlight propagation and 'checkbox' skin

 label-0
 label-1
 label-2
 label-3
 label-4
 label-4-0
 label-4-0-0
 label-4-1
 label-4-2
 label-4-3
 label-5

Tree with single node highlighting and simple skin

 label-0
 label-0-0
 label-0-0-0
 label-0-0-1

Tri-State Checkbox Example

Nodes of the TreeView Control can be highlighted in response to a user action or via code. That highlighting can affect a single node at a time or multiple nodes and it can propagate up or down the tree. In this example we show two trees built at random with different node highlighting settings.

We begin by defining the containers that will hold the trees. The built-in stylesheet allows for two styles of highlighting, the first one, selected via the className ygtv-checkbox, will add a tri-state checkbox in between the toggle icon and the label, the second, selected via the className ygtv-highlight, will change the background of highlighted nodes. If neither of those classes are selected, the highlighting will still work, but the user won't notice since there will be no visual clues. We also add a button to show how highlighted (selected) nodes can be found.

1<h3>Tree with highlight propagation and 'checkbox' skin</h3> 
2<div id="treeDiv1" class="ygtv-checkbox"></div> 
3<button id="logHilit">Log selected</button> 
4<hr/> 
5<h3>Tree with single node highlighting and simple skin</h3> 
6<div id="treeDiv2" class="ygtv-highlight"></div> 
view plain | print | ?

We create the first TreeView and render it. Function makeBranch recursively builds a random branch of TextNodes. Highlighting is enabled by default, nodes can be highlighted via code, but to respond to user events we need to attach the supplied listener onEventToggleHighlight to the event we want to respond to. We also want the highlighting to propagate both up and down.

1tree1 = new YAHOO.widget.TreeView("treeDiv1"); 
2makeBranch(tree1.getRoot()); 
3tree1.subscribe('clickEvent',tree1.onEventToggleHighlight);      
4tree1.setNodesProperty('propagateHighlightUp',true); 
5tree1.setNodesProperty('propagateHighlightDown',true); 
6tree1.render(); 
view plain | print | ?

The checkbox is tri-state because when the highlighting propagates up, the parent node into which it propagates might not have all its child nodes highlighted, so the checkbox has a partially checked state.

We can easily find out which nodes have been highlighted by searching the tree by property highlighState which will be 0 for not-highlighted, 1 for highlighted and 2 for a node that has some children highlighted.

1YAHOO.util.Event.on('logHilit','click',function() { 
2    var hiLit = tree1.getNodesByProperty('highlightState',1); 
3    if (YAHOO.lang.isNull(hiLit)) {  
4        YAHOO.log("None selected"); 
5    } else { 
6        var labels = []; 
7        for (var i = 0; i < hiLit.length; i++) { 
8            labels.push(hiLit[i].label); 
9        } 
10        YAHOO.log("Highlighted nodes:\n" + labels.join("\n"), "info""example"); 
11    } 
12}); 
view plain | print | ?

For tree2 we have set property singleNodeHighlight to true so that by selecting one node, the currently highlighted node, if any, will be un-highlighted. The change in appearance is due to the highlighting 'skin' selected.

1tree2 = new YAHOO.widget.TreeView("treeDiv2"); 
2makeBranch(tree2.getRoot()); 
3tree2.singleNodeHighlight = true
4tree2.subscribe('clickEvent',tree2.onEventToggleHighlight);      
5tree2.render(); 
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 2452ms (+1) 12:49:52 AM:

TextNode (46): label-0-0-1

Generating html

INFO 2451ms (+0) 12:49:52 AM:

TextNode (45): label-0-0-0

Generating html

INFO 2451ms (+0) 12:49:52 AM:

TextNode (44): label-0-0

completeRender: 44, # of children: 2

INFO 2451ms (+0) 12:49:52 AM:

TextNode (44): label-0-0

rendering children for 44

INFO 2451ms (+0) 12:49:52 AM:

TextNode (44): label-0-0

Generating html

INFO 2451ms (+0) 12:49:52 AM:

TextNode (43): label-0

completeRender: 43, # of children: 1

INFO 2451ms (+0) 12:49:52 AM:

TextNode (43): label-0

rendering children for 43

INFO 2451ms (+0) 12:49:52 AM:

TextNode (43): label-0

Generating html

INFO 2451ms (+0) 12:49:52 AM:

RootNode

completeRender: 42, # of children: 1

INFO 2451ms (+0) 12:49:52 AM:

RootNode

rendering children for 42

INFO 2451ms (+0) 12:49:52 AM:

TreeView treeDiv2

tree init: treeDiv2

INFO 2451ms (+1) 12:49:52 AM:

TextNode (37): label-5

Generating html

INFO 2450ms (+0) 12:49:52 AM:

TextNode (35): label-4-3

Generating html

INFO 2450ms (+0) 12:49:52 AM:

TextNode (33): label-4-2

Generating html

INFO 2450ms (+0) 12:49:52 AM:

TextNode (31): label-4-1

Generating html

INFO 2450ms (+0) 12:49:52 AM:

TextNode (30): label-4-0-0

Generating html

INFO 2450ms (+0) 12:49:52 AM:

TextNode (29): label-4-0

completeRender: 29, # of children: 1

INFO 2450ms (+0) 12:49:52 AM:

TextNode (29): label-4-0

rendering children for 29

INFO 2450ms (+0) 12:49:52 AM:

TextNode (29): label-4-0

Generating html

INFO 2450ms (+0) 12:49:52 AM:

TextNode (28): label-4

completeRender: 28, # of children: 4

INFO 2450ms (+0) 12:49:52 AM:

TextNode (28): label-4

rendering children for 28

INFO 2450ms (+0) 12:49:52 AM:

TextNode (28): label-4

Generating html

INFO 2450ms (+0) 12:49:52 AM:

TextNode (22): label-3

Generating html

INFO 2450ms (+0) 12:49:52 AM:

TextNode (17): label-2

Generating html

INFO 2450ms (+3) 12:49:52 AM:

TextNode (10): label-1

Generating html

INFO 2447ms (+0) 12:49:52 AM:

TextNode (1): label-0

Generating html

INFO 2447ms (+0) 12:49:52 AM:

RootNode

completeRender: 0, # of children: 6

INFO 2447ms (+2) 12:49:52 AM:

RootNode

rendering children for 0

INFO 2445ms (+69) 12:49:52 AM:

TreeView treeDiv1

tree init: treeDiv1

INFO 2376ms (+752) 12:49:52 AM:

LogReader instance0

LogReader initialized

INFO 1624ms (+1) 12:49:51 AM:

Get

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

INFO 1623ms (+0) 12:49:51 AM:

Get

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

INFO 1623ms (+1623) 12:49:51 AM:

Get

_next: q0, loaded: undefined

INFO 0ms (+0) 12:49:49 AM:

global

Logger initialized

More TreeView Control Resources:

Copyright © 2011 Yahoo! Inc. All rights reserved.

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