vote up 0 vote down star

For some unknown reason, my problem vanished. Thus I have no solution for the problem.

Objective: I am using Extjs to create and maintain a tree structure on a webpage, and I need to be able to access each of the tree nodes very often. To prevent searching for a specific node all the time, I want to keep a reference to each node.

Solution: I generate each treenode and the tree structure, and store each treenode in an array.

Problem: When assigning a treenode from the array, as a child of another treenode, the assigned child becomes corrupted. If I assign the same treenode stored in a separate variable, it works fine.

Why can't I store the treenodes in an array?

Kind regards, Casper

My setup:

var nodeCollection = new Array(2);

nodeCollection[0] = createNode("Node number 1");
nodeCollection[1] = createNode("Node number 2");

var node1 = createNode("Node number 1");
var node2 = createNode("Node number 2");

var baseRoot = new Ext.tree.TreeNode(
{
    text: "Folder",
    leaf: false
});

// Does not work...
baseRoot.appendChild(nodeCollection[0]);
baseRoot.appendChild(nodeCollection[1]);

// Does work...
baseRoot.appendChild(node1);
baseRoot.appendChild(node2); 

// Populate the root.
var rootNode = new Ext.tree.TreeNode(
{
    leaf: false,
    text: "Root",
    expandable: true,
    expanded: true
});

rootNode.appendChild(baseRoot);

function createNode(title) {
    var node = new Ext.tree.TreeNode(
    {
        leaf: true,
        text: title
    });

    return node;
}
flag

78% accept rate

1 Answer

vote up 0 vote down

Why not just use the findChild method of the rootNode? That should do it to find any node you need from the right context? Storing all of em in a separate array seems like a waste of memory actually from what i know here.

link|flag
The reason is, that I might have more than 100 (leafs) and I need to go through all of them pretty often, to change their properties. Thus skipping the search for each node in a tree, where I know I have to go through them all. Furthermore, I get the advantage of being able to maintain a straight forward index relationsship between the objects which the treenodes represents and the treenodes. – Chau Oct 10 at 11:06
Maybe you could look into an Ext.util.MixedCollection then? This basically is a hash of elements with several usefull methods for retrieving nodes by index for example – ChrisRamakers Oct 12 at 19:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.