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
120
Can get the value of the seleceted UltraWebTree's node with javascript?
posted
I can get the name of the selected UltraWebTree's node  with javascript, for example:

    function NodeClick(treeId,nodeId)  
    {        
        var node = igtree_getNodeById(nodeId);
        if(node == null)
        return;
        var nodename=node.getText();         
    }

so now,I want to get the value,I want to get the help!!!Thanks!