Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
570
Get a node from web data tree.
posted

Hi, previously we used use ultra web tree, save a particular node's id, and later used it. We did it the following way:

var currentNodeId;

function UltraWebTree1_NodeClick(treeId, nodeId, button) {

currentNodeId = nodeId;

}

function renameNode() {

    var treeInstance = igtree_getTreeById(UltraWebTreeClientID);
   
    var currentNode = treeInstance.getNodeById(currentNodeId);   
    currentNode.edit();   
   
}

So, we need to do the same thing for web data tree. (Client side, using javascript)

1. We need to store web data tree node's ID/ Key, or any unique value

2. Later we need to get the node from the webdatatree using that unique value.

So far, we are unable to do that. Any help would be appreciated. Thanks in advance...

  • 1810
    Offline posted

    Hi,

    Have you found a solution to this? I am facing almost the same problem.

    I  need the node's ID/KEY in order to get the node later. I also need the ID of the tree that fires the event as We intend to use the same handler for several trees.

    Thanks in advance.