source: temp/branches/ec-cube-beta/html/test/kakinaka/js/treeview/treeview.js @ 11386

Revision 11386, 52.5 KB checked in by kaki, 18 years ago (diff)
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1/*                                                                                                                                                     
2Copyright (c) 2006, Yahoo! Inc. All rights reserved.
3Code licensed under the BSD License:
4http://developer.yahoo.net/yui/license.txt
5version: 0.11.3
6*/
7
8/**
9 * Contains the tree view state data and the root node.  This is an
10 * ordered tree; child nodes will be displayed in the order created, and
11 * there currently is no way to change this.
12 *
13 * @constructor
14 * @param {string|HTMLElement} id The id of the element, or the element
15 * itself that the tree will be inserted into.
16 */
17YAHOO.widget.TreeView = function(id) {
18    if (id) { this.init(id); }
19};
20
21/**
22 * Count of all nodes in all trees
23 * @type int
24 */
25YAHOO.widget.TreeView.nodeCount = 100;
26
27YAHOO.widget.TreeView.prototype = {
28
29    /**
30     * The id of tree container element
31     *
32     * @type String
33     */
34    id: null,
35
36    /**
37     * The host element for this tree
38     * @private
39     */
40    _el: null,
41
42     /**
43     * Flat collection of all nodes in this tree
44     *
45     * @type Node[]
46     * @private
47     */
48    _nodes: null,
49
50    /**
51     * We lock the tree control while waiting for the dynamic loader to return
52     *
53     * @type boolean
54     */
55    locked: false,
56
57    /**
58     * The animation to use for expanding children, if any
59     *
60     * @type string
61     * @private
62     */
63    _expandAnim: null,
64
65    /**
66     * The animation to use for collapsing children, if any
67     *
68     * @type string
69     * @private
70     */
71    _collapseAnim: null,
72
73    /**
74     * The current number of animations that are executing
75     *
76     * @type int
77     * @private
78     */
79    _animCount: 0,
80
81    /**
82     * The maximum number of animations to run at one time.
83     *
84     * @type int
85     */
86    maxAnim: 2,
87
88    /**
89     * Sets up the animation for expanding children
90     *
91     * @param {string} the type of animation (acceptable values defined in
92     * YAHOO.widget.TVAnim)
93     */
94    setExpandAnim: function(type) {
95        if (YAHOO.widget.TVAnim.isValid(type)) {
96            this._expandAnim = type;
97        }
98    },
99
100    /**
101     * Sets up the animation for collapsing children
102     *
103     * @param {string} the type of animation (acceptable values defined in
104     * YAHOO.widget.TVAnim)
105     */
106    setCollapseAnim: function(type) {
107        if (YAHOO.widget.TVAnim.isValid(type)) {
108            this._collapseAnim = type;
109        }
110    },
111
112    /**
113     * Perform the expand animation if configured, or just show the
114     * element if not configured or too many animations are in progress
115     *
116     * @param el {HTMLElement} the element to animate
117     * @return {boolean} true if animation could be invoked, false otherwise
118     */
119    animateExpand: function(el) {
120
121        if (this._expandAnim && this._animCount < this.maxAnim) {
122            // this.locked = true;
123            var tree = this;
124            var a = YAHOO.widget.TVAnim.getAnim(this._expandAnim, el,
125                            function() { tree.expandComplete(); });
126            if (a) {
127                ++this._animCount;
128                a.animate();
129            }
130
131            return true;
132        }
133
134        return false;
135    },
136
137    /**
138     * Perform the collapse animation if configured, or just show the
139     * element if not configured or too many animations are in progress
140     *
141     * @param el {HTMLElement} the element to animate
142     * @return {boolean} true if animation could be invoked, false otherwise
143     */
144    animateCollapse: function(el) {
145
146        if (this._collapseAnim && this._animCount < this.maxAnim) {
147            // this.locked = true;
148            var tree = this;
149            var a = YAHOO.widget.TVAnim.getAnim(this._collapseAnim, el,
150                            function() { tree.collapseComplete(); });
151            if (a) {
152                ++this._animCount;
153                a.animate();
154            }
155
156            return true;
157        }
158
159        return false;
160    },
161
162    /**
163     * Function executed when the expand animation completes
164     */
165    expandComplete: function() {
166        --this._animCount;
167        // this.locked = false;
168    },
169
170    /**
171     * Function executed when the collapse animation completes
172     */
173    collapseComplete: function() {
174        --this._animCount;
175        // this.locked = false;
176    },
177
178    /**
179     * Initializes the tree
180     *
181     * @parm {string|HTMLElement} id the id of the element that will hold the tree
182     * @private
183     */
184    init: function(id) {
185
186        this.id = id;
187
188        if ("string" !== typeof id) {
189            this._el = id;
190            this.id = this.generateId(id);
191        }
192
193        this._nodes = [];
194
195        // store a global reference
196        YAHOO.widget.TreeView.trees[this.id] = this;
197
198        // Set up the root node
199        this.root = new YAHOO.widget.RootNode(this);
200
201
202    },
203
204    /**
205     * Renders the tree boilerplate and visible nodes
206     */
207    draw: function() {
208        var html = this.root.getHtml();
209        this.getEl().innerHTML = html;
210        this.firstDraw = false;
211    },
212
213    /**
214     * Returns the tree's host element
215     * @return {HTMLElement} the host element
216     */
217    getEl: function() {
218        if (! this._el) {
219            this._el = document.getElementById(this.id);
220        }
221        return this._el;
222    },
223
224    /**
225     * Nodes register themselves with the tree instance when they are created.
226     *
227     * @param node {Node} the node to register
228     * @private
229     */
230    regNode: function(node) {
231        this._nodes[node.index] = node;
232    },
233
234    /**
235     * Returns the root node of this tree
236     *
237     * @return {Node} the root node
238     */
239    getRoot: function() {
240        return this.root;
241    },
242
243    /**
244     * Configures this tree to dynamically load all child data
245     *
246     * @param {function} fnDataLoader the function that will be called to get the data
247     * @param iconMode {int} configures the icon that is displayed when a dynamic
248     * load node is expanded the first time without children.  By default, the
249     * "collapse" icon will be used.  If set to 1, the leaf node icon will be
250     * displayed.
251     */
252    setDynamicLoad: function(fnDataLoader, iconMode) {
253        this.root.setDynamicLoad(fnDataLoader, iconMode);
254    },
255
256    /**
257     * Expands all child nodes.  Note: this conflicts with the "multiExpand"
258     * node property.  If expand all is called in a tree with nodes that
259     * do not allow multiple siblings to be displayed, only the last sibling
260     * will be expanded.
261     */
262    expandAll: function() {
263        if (!this.locked) {
264            this.root.expandAll();
265        }
266    },
267
268    /**
269     * Collapses all expanded child nodes in the entire tree.
270     */
271    collapseAll: function() {
272        if (!this.locked) {
273            this.root.collapseAll();
274        }
275    },
276
277    /**
278     * Returns a node in the tree that has the specified index (this index
279     * is created internally, so this function probably will only be used
280     * in html generated for a given node.)
281     *
282     * @param {int} nodeIndex the index of the node wanted
283     * @return {Node} the node with index=nodeIndex, null if no match
284     */
285    getNodeByIndex: function(nodeIndex) {
286        var n = this._nodes[nodeIndex];
287        return (n) ? n : null;
288    },
289
290    /**
291     * Returns a node that has a matching property and value in the data
292     * object that was passed into its constructor.
293     *
294     * @param {object} property the property to search (usually a string)
295     * @param {object} value the value we want to find (usuall an int or string)
296     * @return {Node} the matching node, null if no match
297     */
298    getNodeByProperty: function(property, value) {
299        for (var i in this._nodes) {
300            var n = this._nodes[i];
301            if (n.data && value == n.data[property]) {
302                return n;
303            }
304        }
305
306        return null;
307    },
308
309    /**
310     * Returns a collection of nodes that have a matching property
311     * and value in the data object that was passed into its constructor. 
312     *
313     * @param {object} property the property to search (usually a string)
314     * @param {object} value the value we want to find (usuall an int or string)
315     * @return {Array} the matching collection of nodes, null if no match
316     */
317    getNodesByProperty: function(property, value) {
318        var values = [];
319        for (var i in this._nodes) {
320            var n = this._nodes[i];
321            if (n.data && value == n.data[property]) {
322                values.push(n);
323            }
324        }
325
326        return (values.length) ? values : null;
327    },
328
329    /**
330     * Removes the node and its children, and optionally refreshes the
331     * branch of the tree that was affected.
332     * @param {Node} The node to remove
333     * @param {boolean} autoRefresh automatically refreshes branch if true
334     * @return {boolean} False is there was a problem, true otherwise.
335     */
336    removeNode: function(node, autoRefresh) {
337
338        // Don't delete the root node
339        if (node.isRoot()) {
340            return false;
341        }
342
343        // Get the branch that we may need to refresh
344        var p = node.parent;
345        if (p.parent) {
346            p = p.parent;
347        }
348
349        // Delete the node and its children
350        this._deleteNode(node);
351
352        // Refresh the parent of the parent
353        if (autoRefresh && p && p.childrenRendered) {
354            p.refresh();
355        }
356
357        return true;
358    },
359
360    /**
361     * Deletes this nodes child collection, recursively.  Also collapses
362     * the node, and resets the dynamic load flag.  The primary use for
363     * this method is to purge a node and allow it to fetch its data
364     * dynamically again.
365     * @param {Node} node the node to purge
366     */
367    removeChildren: function(node) {
368        while (node.children.length) {
369             this._deleteNode(node.children[0]);
370        }
371
372        node.childrenRendered = false;
373        node.dynamicLoadComplete = false;
374        // node.collapse();
375        node.expand();
376        node.collapse();
377    },
378
379    /**
380     * Deletes the node and recurses children
381     * @private
382     */
383    _deleteNode: function(node) {
384        // Remove all the child nodes first
385        this.removeChildren(node);
386
387        // Remove the node from the tree
388        this.popNode(node);
389    },
390
391    /**
392     * Removes the node from the tree, preserving the child collection
393     * to make it possible to insert the branch into another part of the
394     * tree, or another tree.
395     * @param {Node} the node to remove
396     */
397    popNode: function(node) {
398        var p = node.parent;
399
400        // Update the parent's collection of children
401        var a = [];
402
403        for (var i=0, len=p.children.length;i<len;++i) {
404            if (p.children[i] != node) {
405                a[a.length] = p.children[i];
406            }
407        }
408
409        p.children = a;
410
411        // reset the childrenRendered flag for the parent
412        p.childrenRendered = false;
413
414         // Update the sibling relationship
415        if (node.previousSibling) {
416            node.previousSibling.nextSibling = node.nextSibling;
417        }
418
419        if (node.nextSibling) {
420            node.nextSibling.previousSibling = node.previousSibling;
421        }
422
423        node.parent = null;
424        node.previousSibling = null;
425        node.nextSibling = null;
426        node.tree = null;
427
428        // Update the tree's node collection
429        delete this._nodes[node.index];
430    },
431
432    /**
433     * toString
434     * @return {string} string representation of the tree
435     */
436    toString: function() {
437        return "TreeView " + this.id;
438    },
439
440    /**
441     * private
442     */
443    generateId: function(el) {
444        var id = el.id;
445
446        if (!id) {
447            id = "yui-tv-auto-id-" + YAHOO.widget.TreeView.counter;
448            YAHOO.widget.TreeView.counter++;
449        }
450
451        return id;
452    },
453
454    /**
455     * Abstract method that is executed when a node is expanded
456     * @param node {Node} the node that was expanded
457     */
458    onExpand: function(node) { },
459
460    /**
461     * Abstract method that is executed when a node is collapsed
462     * @param node {Node} the node that was collapsed.
463     */
464    onCollapse: function(node) { }
465
466};
467
468/**
469 * Global cache of tree instances
470 *
471 * @type Array
472 * @private
473 */
474YAHOO.widget.TreeView.trees = [];
475
476/**
477 * @private
478 */
479YAHOO.widget.TreeView.counter = 0;
480
481/**
482 * Global method for getting a tree by its id.  Used in the generated
483 * tree html.
484 *
485 * @param treeId {String} the id of the tree instance
486 * @return {TreeView} the tree instance requested, null if not found.
487 */
488YAHOO.widget.TreeView.getTree = function(treeId) {
489    var t = YAHOO.widget.TreeView.trees[treeId];
490    return (t) ? t : null;
491};
492
493/**
494 * Global method for getting a node by its id.  Used in the generated
495 * tree html.
496 *
497 * @param treeId {String} the id of the tree instance
498 * @param nodeIndex {String} the index of the node to return
499 * @return {Node} the node instance requested, null if not found
500 */
501YAHOO.widget.TreeView.getNode = function(treeId, nodeIndex) {
502    var t = YAHOO.widget.TreeView.getTree(treeId);
503   
504    alert(t);
505    return (t) ? t.getNodeByIndex(nodeIndex) : null;
506};
507
508/**
509 * Adds an event.  Replace with event manager when available
510 *
511 * @param el the elment to bind the handler to
512 * @param {string} sType the type of event handler
513 * @param {function} fn the callback to invoke
514 * @param {boolean} capture if true event is capture phase, bubble otherwise
515 */
516YAHOO.widget.TreeView.addHandler = function (el, sType, fn, capture) {
517    capture = (capture) ? true : false;
518    if (el.addEventListener) {
519        el.addEventListener(sType, fn, capture);
520    } else if (el.attachEvent) {
521        el.attachEvent("on" + sType, fn);
522    } else {
523        el["on" + sType] = fn;
524    }
525};
526
527/**
528 * Attempts to preload the images defined in the styles used to draw the tree by
529 * rendering off-screen elements that use the styles.
530 */
531YAHOO.widget.TreeView.preload = function(prefix) {
532    prefix = prefix || "ygtv";
533    var styles = ["tn","tm","tmh","tp","tph","ln","lm","lmh","lp","lph","loading"];
534
535    var sb = [];
536   
537    for (var i = 0; i < styles.length; ++i) {
538        sb[sb.length] = '<span class="' + prefix + styles[i] + '">&#160;</span>';
539    }
540
541    var f = document.createElement("DIV");
542    var s = f.style;
543    s.position = "absolute";
544    s.top = "-1000px";
545    s.left = "-1000px";
546    f.innerHTML = sb.join("");
547
548    document.body.appendChild(f);
549};
550
551YAHOO.widget.TreeView.addHandler(window,
552                "load", YAHOO.widget.TreeView.preload);
553
554/**
555 * The base class for all tree nodes.  The node's presentation and behavior in
556 * response to mouse events is handled in Node subclasses.
557 *
558 * @param oData {object} a string or object containing the data that will
559 * be used to render this node
560 * @param oParent {Node} this node's parent node
561 * @param expanded {boolean} the initial expanded/collapsed state
562 * @constructor
563 */
564YAHOO.widget.Node = function(oData, oParent, expanded) {
565    if (oData) { this.init(oData, oParent, expanded); }
566};
567
568YAHOO.widget.Node.prototype = {
569
570    /**
571     * The index for this instance obtained from global counter in YAHOO.widget.TreeView.
572     *
573     * @type int
574     */
575    index: 0,
576
577    /**
578     * This node's child node collection.
579     *
580     * @type Node[]
581     */
582    children: null,
583
584    /**
585     * Tree instance this node is part of
586     *
587     * @type TreeView
588     */
589    tree: null,
590
591    /**
592     * The data linked to this node.  This can be any object or primitive
593     * value, and the data can be used in getNodeHtml().
594     *
595     * @type object
596     */
597    data: null,
598
599    /**
600     * Parent node
601     *
602     * @type Node
603     */
604    parent: null,
605
606    /**
607     * The depth of this node.  We start at -1 for the root node.
608     *
609     * @type int
610     */
611    depth: -1,
612
613    /**
614     * The href for the node's label.  If one is not specified, the href will
615     * be set so that it toggles the node.
616     *
617     * @type string
618     */
619    href: null,
620
621    /**
622     * The label href target, defaults to current window
623     *
624     * @type string
625     */
626    target: "_self",
627
628    /**
629     * The node's expanded/collapsed state
630     *
631     * @type boolean
632     */
633    expanded: false,
634
635    /**
636     * Can multiple children be expanded at once?
637     *
638     * @type boolean
639     */
640    multiExpand: true,
641
642    /**
643     * Should we render children for a collapsed node?  It is possible that the
644     * implementer will want to render the hidden data...  @todo verify that we
645     * need this, and implement it if we do.
646     *
647     * @type boolean
648     */
649    renderHidden: false,
650
651    /**
652     * This flag is set to true when the html is generated for this node's
653     * children, and set to false when new children are added.
654     * @type boolean
655     */
656    childrenRendered: false,
657
658    /**
659     * Dynamically loaded nodes only fetch the data the first time they are
660     * expanded.  This flag is set to true once the data has been fetched.
661     * @type boolean
662     */
663    dynamicLoadComplete: false,
664
665    /**
666     * This node's previous sibling
667     *
668     * @type Node
669     */
670    previousSibling: null,
671
672    /**
673     * This node's next sibling
674     *
675     * @type Node
676     */
677    nextSibling: null,
678
679    /**
680     * We can set the node up to call an external method to get the child
681     * data dynamically.
682     *
683     * @type boolean
684     * @private
685     */
686    _dynLoad: false,
687
688    /**
689     * Function to execute when we need to get this node's child data.
690     *
691     * @type function
692     */
693    dataLoader: null,
694
695    /**
696     * This is true for dynamically loading nodes while waiting for the
697     * callback to return.
698     *
699     * @type boolean
700     */
701    isLoading: false,
702
703    /**
704     * The toggle/branch icon will not show if this is set to false.  This
705     * could be useful if the implementer wants to have the child contain
706     * extra info about the parent, rather than an actual node.
707     *
708     * @type boolean
709     */
710    hasIcon: true,
711
712    /**
713     * Used to configure what happens when a dynamic load node is expanded
714     * and we discover that it does not have children.  By default, it is
715     * treated as if it still could have children (plus/minus icon).  Set
716     * iconMode to have it display like a leaf node instead.
717     * @type int
718     */
719    iconMode: 0,
720
721    /**
722     * The node type
723     * @private
724     */
725    _type: "Node",
726
727    /*
728    spacerPath: "http://us.i1.yimg.com/us.yimg.com/i/space.gif",
729    expandedText: "Expanded",
730    collapsedText: "Collapsed",
731    loadingText: "Loading",
732    */
733
734    /**
735     * Initializes this node, gets some of the properties from the parent
736     *
737     * @param oData {object} a string or object containing the data that will
738     * be used to render this node
739     * @param oParent {Node} this node's parent node
740     * @param expanded {boolean} the initial expanded/collapsed state
741     */
742    init: function(oData, oParent, expanded, index) {
743        this.data       = oData;
744        this.children   = [];
745       
746        if(typeof index == "number"){
747            this.index      = index;
748        }else{
749            this.index      = YAHOO.widget.TreeView.nodeCount;
750            ++YAHOO.widget.TreeView.nodeCount;
751        }
752        this.expanded   = expanded;
753       
754
755        // oParent should never be null except when we create the root node.
756        if (oParent) {
757            this.parent_id = oParent.index
758            oParent.appendChild(this);
759        }
760    },
761
762    /**
763     * Certain properties for the node cannot be set until the parent
764     * is known. This is called after the node is inserted into a tree.
765     * the parent is also applied to this node's children in order to
766     * make it possible to move a branch from one tree to another.
767     * @param {Node} parentNode this node's parent node
768     * @return {boolean} true if the application was successful
769     */
770    applyParent: function(parentNode) {
771        if (!parentNode) {
772            return false;
773        }
774
775        this.tree   = parentNode.tree;
776        this.parent = parentNode;
777        this.depth  = parentNode.depth + 1;
778
779        if (! this.href) {
780            this.href = "javascript:" + this.getToggleLink();
781        }
782
783        if (! this.multiExpand) {
784            this.multiExpand = parentNode.multiExpand;
785        }
786
787        this.tree.regNode(this);
788        parentNode.childrenRendered = false;
789
790        // cascade update existing children
791        for (var i=0, len=this.children.length;i<len;++i) {
792            this.children[i].applyParent(this);
793        }
794
795        return true;
796    },
797
798    /**
799     * Appends a node to the child collection.
800     *
801     * @param childNode {Node} the new node
802     * @return {Node} the child node
803     * @private
804     */
805    appendChild: function(childNode) {
806        if (this.hasChildren()) {
807            var sib = this.children[this.children.length - 1];
808            sib.nextSibling = childNode;
809            childNode.previousSibling = sib;
810        }
811        this.children[this.children.length] = childNode;
812        childNode.applyParent(this);
813
814        return childNode;
815    },
816
817    /**
818     * Appends this node to the supplied node's child collection
819     * @param parentNode {Node} the node to append to.
820     * @return {Node} The appended node
821     */
822    appendTo: function(parentNode) {
823        return parentNode.appendChild(this);
824    },
825
826    /**
827    * Inserts this node before this supplied node
828    *
829    * @param node {Node} the node to insert this node before
830    * @return {Node} the inserted node
831    */
832    insertBefore: function(node) {
833        var p = node.parent;
834        if (p) {
835
836            if (this.tree) {
837                this.tree.popNode(this);
838            }
839
840            var refIndex = node.isChildOf(p);
841            p.children.splice(refIndex, 0, this);
842            if (node.previousSibling) {
843                node.previousSibling.nextSibling = this;
844            }
845            this.previousSibling = node.previousSibling;
846            this.nextSibling = node;
847            node.previousSibling = this;
848
849            this.applyParent(p);
850        }
851
852        return this;
853    },
854 
855    /**
856    * Inserts this node after the supplied node
857    *
858    * @param node {Node} the node to insert after
859    * @return {Node} the inserted node
860    */
861    insertAfter: function(node) {
862        var p = node.parent;
863        if (p) {
864
865            if (this.tree) {
866                this.tree.popNode(this);
867            }
868
869            var refIndex = node.isChildOf(p);
870
871            if (!node.nextSibling) {
872                return this.appendTo(p);
873            }
874
875            p.children.splice(refIndex + 1, 0, this);
876
877            node.nextSibling.previousSibling = this;
878            this.previousSibling = node;
879            this.nextSibling = node.nextSibling;
880            node.nextSibling = this;
881
882            this.applyParent(p);
883        }
884
885        return this;
886    },
887
888    /**
889    * Returns true if the Node is a child of supplied Node
890    *
891    * @param parentNode {Node} the Node to check
892    * @return {boolean} The node index if this Node is a child of
893    *                   supplied Node, else -1.
894    * @private
895    */
896    isChildOf: function(parentNode) {
897        if (parentNode && parentNode.children) {
898            for (var i=0, len=parentNode.children.length; i<len ; ++i) {
899                if (parentNode.children[i] === this) {
900                    return i;
901                }
902            }
903        }
904
905        return -1;
906    },
907
908    /**
909     * Returns a node array of this node's siblings, null if none.
910     *
911     * @return Node[]
912     */
913    getSiblings: function() {
914        return this.parent.children;
915    },
916
917    /**
918     * Shows this node's children
919     */
920    showChildren: function() {
921        if (!this.tree.animateExpand(this.getChildrenEl())) {
922            if (this.hasChildren()) {
923                this.getChildrenEl().style.display = "";
924            }
925        }
926    },
927
928    /**
929     * Hides this node's children
930     */
931    hideChildren: function() {
932
933        if (!this.tree.animateCollapse(this.getChildrenEl())) {
934            this.getChildrenEl().style.display = "none";
935        }
936    },
937
938    /**
939     * Returns the id for this node's container div
940     *
941     * @return {string} the element id
942     */
943    getElId: function() {
944        return "ygtv" + this.index;
945    },
946
947    /**
948     * Returns the id for this node's children div
949     *
950     * @return {string} the element id for this node's children div
951     */
952    getChildrenElId: function() {
953        return "ygtvc" + this.index;
954    },
955
956    /**
957     * Returns the id for this node's toggle element
958     *
959     * @return {string} the toggel element id
960     */
961    getToggleElId: function() {
962        return "ygtvt" + this.index;
963    },
964
965    /**
966     * Returns the id for this node's spacer image.  The spacer is positioned
967     * over the toggle and provides feedback for screen readers.
968     * @return {string} the id for the spacer image
969     */
970    /*
971    getSpacerId: function() {
972        return "ygtvspacer" + this.index;
973    },
974    */
975
976    /**
977     * Returns this node's container html element
978     * @return {HTMLElement} the container html element
979     */
980    getEl: function() {
981        return document.getElementById(this.getElId());
982    },
983
984    /**
985     * Returns the div that was generated for this node's children
986     * @return {HTMLElement} this node's children div
987     */
988    getChildrenEl: function() {
989        return document.getElementById(this.getChildrenElId());
990    },
991
992    /**
993     * Returns the element that is being used for this node's toggle.
994     * @return {HTMLElement} this node's toggle html element
995     */
996    getToggleEl: function() {
997        return document.getElementById(this.getToggleElId());
998    },
999
1000    /**
1001     * Returns the element that is being used for this node's spacer.
1002     * @return {HTMLElement} this node's spacer html element
1003     */
1004    /*
1005    getSpacer: function() {
1006        return document.getElementById( this.getSpacerId() ) || {};
1007    },
1008    */
1009
1010    /*
1011    getStateText: function() {
1012        if (this.isLoading) {
1013            return this.loadingText;
1014        } else if (this.hasChildren(true)) {
1015            if (this.expanded) {
1016                return this.expandedText;
1017            } else {
1018                return this.collapsedText;
1019            }
1020        } else {
1021            return "";
1022        }
1023    },
1024    */
1025
1026    /**
1027     * Generates the link that will invoke this node's toggle method
1028     * @return {string} the javascript url for toggling this node
1029     */
1030    getToggleLink: function() {
1031        return "YAHOO.widget.TreeView.getNode(\'" + this.tree.id + "\'," +
1032            this.index + ").toggle()";
1033    },
1034
1035    /**
1036     * Hides this nodes children (creating them if necessary), changes the
1037     * toggle style.
1038     */
1039    collapse: function() {
1040        // Only collapse if currently expanded
1041        if (!this.expanded) { return; }
1042
1043        // fire the collapse event handler
1044        var ret = this.tree.onCollapse(this);
1045
1046        if ("undefined" != typeof ret && !ret) {
1047            return;
1048        }
1049
1050        if (!this.getEl()) {
1051            this.expanded = false;
1052            return;
1053        }
1054
1055        // hide the child div
1056        this.hideChildren();
1057        this.expanded = false;
1058
1059        if (this.hasIcon) {
1060            this.getToggleEl().className = this.getStyle();
1061        }
1062
1063        // this.getSpacer().title = this.getStateText();
1064
1065    },
1066
1067    /**
1068     * Shows this nodes children (creating them if necessary), changes the
1069     * toggle style, and collapses its siblings if multiExpand is not set.
1070     */
1071    expand: function() {
1072        // Only expand if currently collapsed.
1073        if (this.expanded) { return; }
1074
1075        // fire the expand event handler
1076        var ret = this.tree.onExpand(this);
1077
1078        if ("undefined" != typeof ret && !ret) {
1079            return;
1080        }
1081
1082        if (!this.getEl()) {
1083            this.expanded = true;
1084            return;
1085        }
1086
1087        if (! this.childrenRendered) {
1088            this.getChildrenEl().innerHTML = this.renderChildren();
1089        } else {
1090        }
1091
1092        this.expanded = true;
1093        if (this.hasIcon) {
1094            this.getToggleEl().className = this.getStyle();
1095        }
1096
1097        // this.getSpacer().title = this.getStateText();
1098
1099        // We do an extra check for children here because the lazy
1100        // load feature can expose nodes that have no children.
1101
1102        // if (!this.hasChildren()) {
1103        if (this.isLoading) {
1104            this.expanded = false;
1105            return;
1106        }
1107
1108        if (! this.multiExpand) {
1109            var sibs = this.getSiblings();
1110            for (var i=0; i<sibs.length; ++i) {
1111                if (sibs[i] != this && sibs[i].expanded) {
1112                    sibs[i].collapse();
1113                }
1114            }
1115        }
1116
1117        this.showChildren();
1118    },
1119
1120    /**
1121     * Returns the css style name for the toggle
1122     *
1123     * @return {string} the css class for this node's toggle
1124     */
1125    getStyle: function() {
1126        if (this.isLoading) {
1127            return "ygtvloading";
1128        } else {
1129            // location top or bottom, middle nodes also get the top style
1130            var loc = (this.nextSibling) ? "t" : "l";
1131
1132            // type p=plus(expand), m=minus(collapase), n=none(no children)
1133            var type = "n";
1134            if (this.hasChildren(true) || (this.isDynamic() && !this.getIconMode())) {
1135            // if (this.hasChildren(true)) {
1136                type = (this.expanded) ? "m" : "p";
1137            }
1138
1139            return "ygtv" + loc + type;
1140        }
1141    },
1142
1143    /**
1144     * Returns the hover style for the icon
1145     * @return {string} the css class hover state
1146     */
1147    getHoverStyle: function() {
1148        var s = this.getStyle();
1149        if (this.hasChildren(true) && !this.isLoading) {
1150            s += "h";
1151        }
1152        return s;
1153    },
1154
1155    /**
1156     * Recursively expands all of this node's children.
1157     */
1158    expandAll: function() {
1159        for (var i=0;i<this.children.length;++i) {
1160            var c = this.children[i];
1161            if (c.isDynamic()) {
1162                alert("Not supported (lazy load + expand all)");
1163                break;
1164            } else if (! c.multiExpand) {
1165                alert("Not supported (no multi-expand + expand all)");
1166                break;
1167            } else {
1168                c.expand();
1169                c.expandAll();
1170            }
1171        }
1172    },
1173
1174    /**
1175     * Recursively collapses all of this node's children.
1176     */
1177    collapseAll: function() {
1178        for (var i=0;i<this.children.length;++i) {
1179            this.children[i].collapse();
1180            this.children[i].collapseAll();
1181        }
1182    },
1183
1184    /**
1185     * Configures this node for dynamically obtaining the child data
1186     * when the node is first expanded.  Calling it without the callback
1187     * will turn off dynamic load for the node.
1188     *
1189     * @param fmDataLoader {function} the function that will be used to get the data.
1190     * @param iconMode {int} configures the icon that is displayed when a dynamic
1191     * load node is expanded the first time without children.  By default, the
1192     * "collapse" icon will be used.  If set to 1, the leaf node icon will be
1193     * displayed.
1194     */
1195    setDynamicLoad: function(fnDataLoader, iconMode) {
1196        if (fnDataLoader) {
1197            this.dataLoader = fnDataLoader;
1198            this._dynLoad = true;
1199        } else {
1200            this.dataLoader = null;
1201            this._dynLoad = false;
1202        }
1203
1204        if (iconMode) {
1205            this.iconMode = iconMode;
1206        }
1207    },
1208
1209    /**
1210     * Evaluates if this node is the root node of the tree
1211     *
1212     * @return {boolean} true if this is the root node
1213     */
1214    isRoot: function() {
1215        return (this == this.tree.root);
1216    },
1217
1218    /**
1219     * Evaluates if this node's children should be loaded dynamically.  Looks for
1220     * the property both in this instance and the root node.  If the tree is
1221     * defined to load all children dynamically, the data callback function is
1222     * defined in the root node
1223     *
1224     * @return {boolean} true if this node's children are to be loaded dynamically
1225     */
1226    isDynamic: function() {
1227        var lazy = (!this.isRoot() && (this._dynLoad || this.tree.root._dynLoad));
1228        return lazy;
1229    },
1230
1231    getIconMode: function() {
1232        return (this.iconMode || this.tree.root.iconMode);
1233    },
1234
1235    /**
1236     * Checks if this node has children.  If this node is lazy-loading and the
1237     * children have not been rendered, we do not know whether or not there
1238     * are actual children.  In most cases, we need to assume that there are
1239     * children (for instance, the toggle needs to show the expandable
1240     * presentation state).  In other times we want to know if there are rendered
1241     * children.  For the latter, "checkForLazyLoad" should be false.
1242     *
1243     * @param checkForLazyLoad {boolean} should we check for unloaded children?
1244     * @return {boolean} true if this has children or if it might and we are
1245     * checking for this condition.
1246     */
1247    hasChildren: function(checkForLazyLoad) {
1248        return ( this.children.length > 0 ||
1249                (checkForLazyLoad && this.isDynamic() && !this.dynamicLoadComplete) );
1250    },
1251
1252    /**
1253     * Expands if node is collapsed, collapses otherwise.
1254     */
1255    toggle: function() {
1256        if (!this.tree.locked && ( this.hasChildren(true) || this.isDynamic()) ) {
1257            if (this.expanded) { this.collapse(); } else { this.expand(); }
1258        }
1259    },
1260
1261    /**
1262     * Returns the markup for this node and its children.
1263     *
1264     * @return {string} the markup for this node and its expanded children.
1265     */
1266    getHtml: function() {
1267        var sb = [];
1268        sb[sb.length] = '<div class="ygtvitem" id="' + this.getElId() + '">';
1269        sb[sb.length] = this.getNodeHtml();
1270        sb[sb.length] = this.getChildrenHtml();
1271        sb[sb.length] = '</div>';
1272        return sb.join("");
1273    },
1274
1275    /**
1276     * Called when first rendering the tree.  We always build the div that will
1277     * contain this nodes children, but we don't render the children themselves
1278     * unless this node is expanded.
1279     *
1280     * @return {string} the children container div html and any expanded children
1281     * @private
1282     */
1283    getChildrenHtml: function() {
1284
1285        var sb = [];
1286        sb[sb.length] = '<div class="ygtvchildren"';
1287        sb[sb.length] = ' id="' + this.getChildrenElId() + '"';
1288        if (!this.expanded) {
1289            sb[sb.length] = ' style="display:none;"';
1290        }
1291        sb[sb.length] = '>';
1292
1293        // Don't render the actual child node HTML unless this node is expanded.
1294        if ( (this.hasChildren(true) && this.expanded) ||
1295                (this.renderHidden && !this.isDynamic()) ) {
1296            sb[sb.length] = this.renderChildren();
1297        }
1298
1299        sb[sb.length] = '</div>';
1300
1301        return sb.join("");
1302    },
1303
1304    /**
1305     * Generates the markup for the child nodes.  This is not done until the node
1306     * is expanded.
1307     *
1308     * @return {string} the html for this node's children
1309     * @private
1310     */
1311    renderChildren: function() {
1312
1313
1314        var node = this;
1315
1316        if (this.isDynamic() && !this.dynamicLoadComplete) {
1317            this.isLoading = true;
1318            this.tree.locked = true;
1319
1320            if (this.dataLoader) {
1321
1322                setTimeout(
1323                    function() {
1324                        node.dataLoader(node,
1325                            function() {
1326                                node.loadComplete();
1327                            });
1328                    }, 10);
1329               
1330            } else if (this.tree.root.dataLoader) {
1331
1332                setTimeout(
1333                    function() {
1334                        node.tree.root.dataLoader(node,
1335                            function() {
1336                                node.loadComplete();
1337                            });
1338                    }, 10);
1339
1340            } else {
1341                return "Error: data loader not found or not specified.";
1342            }
1343
1344            return "";
1345
1346        } else {
1347            return this.completeRender();
1348        }
1349    },
1350
1351    /**
1352     * Called when we know we have all the child data.
1353     * @return {string} children html
1354     */
1355    completeRender: function() {
1356        var sb = [];
1357
1358        for (var i=0; i < this.children.length; ++i) {
1359            this.children[i].childrenRendered = false;
1360            sb[sb.length] = this.children[i].getHtml();
1361        }
1362       
1363        this.childrenRendered = true;
1364
1365        return sb.join("");
1366    },
1367
1368    /**
1369     * Load complete is the callback function we pass to the data provider
1370     * in dynamic load situations.
1371     */
1372    loadComplete: function() {
1373        this.getChildrenEl().innerHTML = this.completeRender();
1374        this.dynamicLoadComplete = true;
1375        this.isLoading = false;
1376        this.expand();
1377        this.tree.locked = false;
1378    },
1379
1380    /**
1381     * Returns this node's ancestor at the specified depth.
1382     *
1383     * @param {int} depth the depth of the ancestor.
1384     * @return {Node} the ancestor
1385     */
1386    getAncestor: function(depth) {
1387        if (depth >= this.depth || depth < 0)  {
1388            return null;
1389        }
1390
1391        var p = this.parent;
1392       
1393        while (p.depth > depth) {
1394            p = p.parent;
1395        }
1396
1397        return p;
1398    },
1399
1400    /**
1401     * Returns the css class for the spacer at the specified depth for
1402     * this node.  If this node's ancestor at the specified depth
1403     * has a next sibling the presentation is different than if it
1404     * does not have a next sibling
1405     *
1406     * @param {int} depth the depth of the ancestor.
1407     * @return {string} the css class for the spacer
1408     */
1409    getDepthStyle: function(depth) {
1410        return (this.getAncestor(depth).nextSibling) ?
1411            "ygtvdepthcell" : "ygtvblankdepthcell";
1412    },
1413
1414    /**
1415     * Get the markup for the node.  This is designed to be overrided so that we can
1416     * support different types of nodes.
1417     *
1418     * @return {string} The HTML that will render this node.
1419     */
1420    getNodeHtml: function() {
1421        return "";
1422    },
1423
1424    /**
1425     * Regenerates the html for this node and its children.  To be used when the
1426     * node is expanded and new children have been added.
1427     */
1428    refresh: function() {
1429        // this.loadComplete();
1430        this.getChildrenEl().innerHTML = this.completeRender();
1431
1432        if (this.hasIcon) {
1433            var el = this.getToggleEl();
1434            if (el) {
1435                el.className = this.getStyle();
1436            }
1437        }
1438    },
1439
1440    /**
1441     * toString
1442     * @return {string} string representation of the node
1443     */
1444    toString: function() {
1445        return "Node (" + this.index + ")";
1446    }
1447
1448};
1449
1450/**
1451 * A custom YAHOO.widget.Node that handles the unique nature of
1452 * the virtual, presentationless root node.
1453 *
1454 * @extends YAHOO.widget.Node
1455 * @constructor
1456 */
1457YAHOO.widget.RootNode = function(oTree) {
1458    // Initialize the node with null params.  The root node is a
1459    // special case where the node has no presentation.  So we have
1460    // to alter the standard properties a bit.
1461    this.init(null, null, true);
1462   
1463    /**
1464     * For the root node, we get the tree reference from as a param
1465     * to the constructor instead of from the parent element.
1466     *
1467     * @type TreeView
1468     */
1469    this.tree = oTree;
1470};
1471
1472YAHOO.widget.RootNode.prototype = new YAHOO.widget.Node();
1473
1474// overrides YAHOO.widget.Node
1475YAHOO.widget.RootNode.prototype.getNodeHtml = function() {
1476    return "";
1477};
1478
1479YAHOO.widget.RootNode.prototype.toString = function() {
1480    return "RootNode";
1481};
1482
1483YAHOO.widget.RootNode.prototype.loadComplete = function() {
1484    this.tree.draw();
1485};
1486/**
1487 * The default node presentation.  The first parameter should be
1488 * either a string that will be used as the node's label, or an object
1489 * that has a string propery called label.  By default, the clicking the
1490 * label will toggle the expanded/collapsed state of the node.  By
1491 * changing the href property of the instance, this behavior can be
1492 * changed so that the label will go to the specified href.
1493 *
1494 * @extends YAHOO.widget.Node
1495 * @constructor
1496 * @param oData {object} a string or object containing the data that will
1497 * be used to render this node
1498 * @param oParent {YAHOO.widget.Node} this node's parent node
1499 * @param expanded {boolean} the initial expanded/collapsed state
1500 */
1501YAHOO.widget.TextNode = function(oData, oParent, expanded, index) {
1502    // this.type = "TextNode";
1503
1504    if (oData) {
1505        this.init(oData, oParent, expanded, index);
1506        this.setUpLabel(oData);
1507    }
1508
1509    /**
1510     * @private
1511     */
1512};
1513
1514YAHOO.widget.TextNode.prototype = new YAHOO.widget.Node();
1515
1516/**
1517 * The CSS class for the label href.  Defaults to ygtvlabel, but can be
1518 * overridden to provide a custom presentation for a specific node.
1519 *
1520 * @type string
1521 */
1522YAHOO.widget.TextNode.prototype.labelStyle = "ygtvlabel";
1523
1524/**
1525 * The derived element id of the label for this node
1526 *
1527 * @type string
1528 */
1529YAHOO.widget.TextNode.prototype.labelElId = null;
1530
1531/**
1532 * The text for the label.  It is assumed that the oData parameter will
1533 * either be a string that will be used as the label, or an object that
1534 * has a property called "label" that we will use.
1535 *
1536 * @type string
1537 */
1538YAHOO.widget.TextNode.prototype.label = null;
1539
1540/**
1541 * Sets up the node label
1542 *
1543 * @param oData string containing the label, or an object with a label property
1544 */
1545YAHOO.widget.TextNode.prototype.setUpLabel = function(oData) {
1546    if (typeof oData == "string") {
1547        oData = { label: oData };
1548    }
1549    this.label = oData.label;
1550   
1551    // update the link
1552    if (oData.href) {
1553        this.href = oData.href;
1554    }
1555
1556    // set the target
1557    if (oData.target) {
1558        this.target = oData.target;
1559    }
1560
1561    if (oData.style) {
1562        this.labelStyle = oData.style;
1563    }
1564
1565    this.labelElId = "ygtvlabelel" + this.index;
1566};
1567
1568/**
1569 * Returns the label element
1570 *
1571 * @return {object} the element
1572 */
1573YAHOO.widget.TextNode.prototype.getLabelEl = function() {
1574    return document.getElementById(this.labelElId);
1575};
1576
1577// overrides YAHOO.widget.Node
1578YAHOO.widget.TextNode.prototype.getNodeHtml = function() {
1579    var sb = [];
1580
1581    sb[sb.length] = '<table border="0" cellpadding="0" cellspacing="0">';
1582    sb[sb.length] = '<tr>';
1583   
1584    for (i=0;i<this.depth;++i) {
1585        // sb[sb.length] = '<td class="ygtvdepthcell">&#160;</td>';
1586        sb[sb.length] = '<td class="' + this.getDepthStyle(i) + '">&#160;</td>';
1587    }
1588
1589    var getNode = 'YAHOO.widget.TreeView.getNode(\'' +
1590                    this.tree.id + '\',' + this.index + ')';
1591
1592    sb[sb.length] = '<td';
1593    // sb[sb.length] = ' onselectstart="return false"';
1594    sb[sb.length] = ' id="' + this.getToggleElId() + '"';
1595    sb[sb.length] = ' class="' + this.getStyle() + '"';
1596    if (this.hasChildren(true)) {
1597        sb[sb.length] = ' onmouseover="this.className=';
1598        sb[sb.length] = getNode + '.getHoverStyle()"';
1599        sb[sb.length] = ' onmouseout="this.className=';
1600        sb[sb.length] = getNode + '.getStyle()"';
1601    }
1602    sb[sb.length] = ' onclick="javascript:' + this.getToggleLink() + '">';
1603
1604    /*
1605    sb[sb.length] = '<img id="' + this.getSpacerId() + '"';
1606    sb[sb.length] = ' alt=""';
1607    sb[sb.length] = ' tabindex=0';
1608    sb[sb.length] = ' src="' + this.spacerPath + '"';
1609    sb[sb.length] = ' title="' + this.getStateText() + '"';
1610    sb[sb.length] = ' class="ygtvspacer"';
1611    // sb[sb.length] = ' onkeypress="return ' + getNode + '".onKeyPress()"';
1612    sb[sb.length] = ' />';
1613    */
1614
1615    sb[sb.length] = '&#160;';
1616
1617    sb[sb.length] = '</td>';
1618    sb[sb.length] = '<td>';
1619    sb[sb.length] = '<a';
1620    sb[sb.length] = ' id="' + this.labelElId + '"';
1621    sb[sb.length] = ' class="' + this.labelStyle + '"';
1622    sb[sb.length] = ' href="' + this.href + '"';
1623    sb[sb.length] = ' target="' + this.target + '"';
1624    sb[sb.length] = ' onclick="return ' + getNode + '.onLabelClick(' + getNode +')"';
1625    if (this.hasChildren(true)) {
1626        sb[sb.length] = ' onmouseover="document.getElementById(\'';
1627        sb[sb.length] = this.getToggleElId() + '\').className=';
1628        sb[sb.length] = getNode + '.getHoverStyle()"';
1629        sb[sb.length] = ' onmouseout="document.getElementById(\'';
1630        sb[sb.length] = this.getToggleElId() + '\').className=';
1631        sb[sb.length] = getNode + '.getStyle()"';
1632    }
1633    sb[sb.length] = ' >';
1634    sb[sb.length] = this.label;
1635    sb[sb.length] = '</a>';
1636    sb[sb.length] = '</td>';
1637    sb[sb.length] = '</tr>';
1638    sb[sb.length] = '</table>';
1639
1640    return sb.join("");
1641};
1642
1643/**
1644 * Executed when the label is clicked
1645 * @param me {Node} this node
1646 * @scope the anchor tag clicked
1647 * @return false to cancel the anchor click
1648 */
1649YAHOO.widget.TextNode.prototype.onLabelClick = function(me) {
1650    //return true;
1651};
1652
1653YAHOO.widget.TextNode.prototype.toString = function() {
1654    return "TextNode (" + this.index + ") " + this.label;
1655};
1656
1657/**
1658 * A menu-specific implementation that differs from TextNode in that only
1659 * one sibling can be expanded at a time.
1660 * @extends YAHOO.widget.TextNode
1661 * @constructor
1662 */
1663YAHOO.widget.MenuNode = function(oData, oParent, expanded) {
1664    if (oData) {
1665        this.init(oData, oParent, expanded);
1666        this.setUpLabel(oData);
1667    }
1668
1669    /**
1670     * Menus usually allow only one branch to be open at a time.
1671     * @type boolean
1672     */
1673    this.multiExpand = false;
1674
1675    /**
1676     * @private
1677     */
1678
1679};
1680
1681YAHOO.widget.MenuNode.prototype = new YAHOO.widget.TextNode();
1682
1683YAHOO.widget.MenuNode.prototype.toString = function() {
1684    return "MenuNode (" + this.index + ") " + this.label;
1685};
1686
1687/**
1688 * This implementation takes either a string or object for the
1689 * oData argument.  If is it a string, we will use it for the display
1690 * of this node (and it can contain any html code).  If the parameter
1691 * is an object, we look for a parameter called "html" that will be
1692 * used for this node's display.
1693 *
1694 * @extends YAHOO.widget.Node
1695 * @constructor
1696 * @param oData {object} a string or object containing the data that will
1697 * be used to render this node
1698 * @param oParent {YAHOO.widget.Node} this node's parent node
1699 * @param expanded {boolean} the initial expanded/collapsed state
1700 * @param hasIcon {boolean} specifies whether or not leaf nodes should
1701 * have an icon
1702 */
1703YAHOO.widget.HTMLNode = function(oData, oParent, expanded, hasIcon) {
1704    if (oData) {
1705        this.init(oData, oParent, expanded);
1706        this.initContent(oData, hasIcon);
1707    }
1708};
1709
1710YAHOO.widget.HTMLNode.prototype = new YAHOO.widget.Node();
1711
1712/**
1713 * The CSS class for the html content container.  Defaults to ygtvhtml, but
1714 * can be overridden to provide a custom presentation for a specific node.
1715 *
1716 * @type string
1717 */
1718YAHOO.widget.HTMLNode.prototype.contentStyle = "ygtvhtml";
1719
1720/**
1721 * The generated id that will contain the data passed in by the implementer.
1722 *
1723 * @type string
1724 */
1725YAHOO.widget.HTMLNode.prototype.contentElId = null;
1726
1727/**
1728 * The HTML content to use for this node's display
1729 *
1730 * @type string
1731 */
1732YAHOO.widget.HTMLNode.prototype.content = null;
1733
1734/**
1735 * Sets up the node label
1736 *
1737 * @param {object} An html string or object containing an html property
1738 * @param {boolean} hasIcon determines if the node will be rendered with an
1739 * icon or not
1740 */
1741YAHOO.widget.HTMLNode.prototype.initContent = function(oData, hasIcon) {
1742    if (typeof oData == "string") {
1743        oData = { html: oData };
1744    }
1745
1746    this.html = oData.html;
1747    this.contentElId = "ygtvcontentel" + this.index;
1748    this.hasIcon = hasIcon;
1749
1750    /**
1751     * @private
1752     */
1753};
1754
1755/**
1756 * Returns the outer html element for this node's content
1757 *
1758 * @return {HTMLElement} the element
1759 */
1760YAHOO.widget.HTMLNode.prototype.getContentEl = function() {
1761    return document.getElementById(this.contentElId);
1762};
1763
1764// overrides YAHOO.widget.Node
1765YAHOO.widget.HTMLNode.prototype.getNodeHtml = function() {
1766    var sb = [];
1767
1768    sb[sb.length] = '<table border="0" cellpadding="0" cellspacing="0">';
1769    sb[sb.length] = '<tr>';
1770   
1771    for (i=0;i<this.depth;++i) {
1772        sb[sb.length] = '<td class="' + this.getDepthStyle(i) + '">&#160;</td>';
1773    }
1774
1775    if (this.hasIcon) {
1776        sb[sb.length] = '<td';
1777        sb[sb.length] = ' id="' + this.getToggleElId() + '"';
1778        sb[sb.length] = ' class="' + this.getStyle() + '"';
1779        sb[sb.length] = ' onclick="javascript:' + this.getToggleLink() + '"';
1780        if (this.hasChildren(true)) {
1781            sb[sb.length] = ' onmouseover="this.className=';
1782            sb[sb.length] = 'YAHOO.widget.TreeView.getNode(\'';
1783            sb[sb.length] = this.tree.id + '\',' + this.index +  ').getHoverStyle()"';
1784            sb[sb.length] = ' onmouseout="this.className=';
1785            sb[sb.length] = 'YAHOO.widget.TreeView.getNode(\'';
1786            sb[sb.length] = this.tree.id + '\',' + this.index +  ').getStyle()"';
1787        }
1788        sb[sb.length] = '>&#160;</td>';
1789    }
1790
1791    sb[sb.length] = '<td';
1792    sb[sb.length] = ' id="' + this.contentElId + '"';
1793    sb[sb.length] = ' class="' + this.contentStyle + '"';
1794    sb[sb.length] = ' >';
1795    sb[sb.length] = this.html;
1796    sb[sb.length] = '</td>';
1797    sb[sb.length] = '</tr>';
1798    sb[sb.length] = '</table>';
1799
1800    return sb.join("");
1801};
1802
1803YAHOO.widget.HTMLNode.prototype.toString = function() {
1804    return "HTMLNode (" + this.index + ")";
1805};
1806
1807/**
1808 * A static factory class for tree view expand/collapse animations
1809 *
1810 * @constructor
1811 */
1812YAHOO.widget.TVAnim = function() {
1813    return {
1814        /**
1815         * Constant for the fade in animation
1816         *
1817         * @type string
1818         */
1819        FADE_IN: "TVFadeIn",
1820
1821        /**
1822         * Constant for the fade out animation
1823         *
1824         * @type string
1825         */
1826        FADE_OUT: "TVFadeOut",
1827
1828        /**
1829         * Returns a ygAnim instance of the given type
1830         *
1831         * @param type {string} the type of animation
1832         * @param el {HTMLElement} the element to element (probably the children div)
1833         * @param callback {function} function to invoke when the animation is done.
1834         * @return {YAHOO.util.Animation} the animation instance
1835         */
1836        getAnim: function(type, el, callback) {
1837            if (YAHOO.widget[type]) {
1838                return new YAHOO.widget[type](el, callback);
1839            } else {
1840                return null;
1841            }
1842        },
1843
1844        /**
1845         * Returns true if the specified animation class is available
1846         *
1847         * @param type {string} the type of animation
1848         * @return {boolean} true if valid, false if not
1849         */
1850        isValid: function(type) {
1851            return (YAHOO.widget[type]);
1852        }
1853    };
1854} ();
1855
1856/**
1857 * A 1/2 second fade-in animation.
1858 *
1859 * @constructor
1860 * @param el {HTMLElement} the element to animate
1861 * @param callback {function} function to invoke when the animation is finished
1862 */
1863YAHOO.widget.TVFadeIn = function(el, callback) {
1864    /**
1865     * The element to animate
1866     * @type HTMLElement
1867     */
1868    this.el = el;
1869
1870    /**
1871     * the callback to invoke when the animation is complete
1872     *
1873     * @type function
1874     */
1875    this.callback = callback;
1876
1877    /**
1878     * @private
1879     */
1880};
1881
1882/**
1883 * Performs the animation
1884 */
1885YAHOO.widget.TVFadeIn.prototype = {
1886    animate: function() {
1887        var tvanim = this;
1888
1889        var s = this.el.style;
1890        s.opacity = 0.1;
1891        s.filter = "alpha(opacity=10)";
1892        s.display = "";
1893
1894        // var dur = ( navigator.userAgent.match(/msie/gi) ) ? 0.05 : 0.4;
1895        var dur = 0.4;
1896        // var a = new ygAnim_Fade(this.el, dur, 1);
1897        // a.setStart(0.1);
1898        // a.onComplete = function() { tvanim.onComplete(); };
1899
1900        // var a = new YAHOO.util.Anim(this.el, 'opacity', 0.1, 1);
1901        var a = new YAHOO.util.Anim(this.el, {opacity: {from: 0.1, to: 1, unit:""}}, dur);
1902        a.onComplete.subscribe( function() { tvanim.onComplete(); } );
1903        a.animate();
1904    },
1905
1906    /**
1907     * Clean up and invoke callback
1908     */
1909    onComplete: function() {
1910        this.callback();
1911    },
1912
1913    toString: function() {
1914        return "TVFadeIn";
1915    }
1916};
1917
1918/**
1919 * A 1/2 second fade out animation.
1920 *
1921 * @constructor
1922 * @param el {HTMLElement} the element to animate
1923 * @param callback {Function} function to invoke when the animation is finished
1924 */
1925YAHOO.widget.TVFadeOut = function(el, callback) {
1926    /**
1927     * The element to animate
1928     * @type HTMLElement
1929     */
1930    this.el = el;
1931
1932    /**
1933     * the callback to invoke when the animation is complete
1934     *
1935     * @type function
1936     */
1937    this.callback = callback;
1938
1939    /**
1940     * @private
1941     */
1942};
1943
1944/**
1945 * Performs the animation
1946 */
1947YAHOO.widget.TVFadeOut.prototype = {
1948    animate: function() {
1949        var tvanim = this;
1950        // var dur = ( navigator.userAgent.match(/msie/gi) ) ? 0.05 : 0.4;
1951        var dur = 0.4;
1952        // var a = new ygAnim_Fade(this.el, dur, 0.1);
1953        // a.onComplete = function() { tvanim.onComplete(); };
1954
1955        // var a = new YAHOO.util.Anim(this.el, 'opacity', 1, 0.1);
1956        var a = new YAHOO.util.Anim(this.el, {opacity: {from: 1, to: 0.1, unit:""}}, dur);
1957        a.onComplete.subscribe( function() { tvanim.onComplete(); } );
1958        a.animate();
1959    },
1960
1961    /**
1962     * Clean up and invoke callback
1963     */
1964    onComplete: function() {
1965        var s = this.el.style;
1966        s.display = "none";
1967        // s.opacity = 1;
1968        s.filter = "alpha(opacity=100)";
1969        this.callback();
1970    },
1971
1972    toString: function() {
1973        return "TVFadeOut";
1974    }
1975};
1976
Note: See TracBrowser for help on using the repository browser.