With dynatree I want to open the link selected by the user in a new window and to have the new window focused. I obtained this so:

            if (node.data.url) {
                window.open(node.data.url);
                return stop;
            };

where "stop" is undefined. Is there another way? But there is more. If I click again the same link (example Fraer Leasing) nothing happens (and I want another window opened for that link). How can i do? Please, if possible, answer wih examples. Thanks

link|improve this question
feedback

1 Answer

From the sample

 onActivate: function(node) {
    if( node.data.href ){
      window.open(node.data.href, node.data.target);
    }
 }

The onActivate event is only triggered once, i.e. when the node was inactive before. You could implement the onClick event instead.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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