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;
}
