I have a link on web page

<li data="url: 'www.mypage.com?index.php?CId=2&MId=14&MTId=1'">mylink

In my js script I have

$(document).ready(function() {

 $("#tree").dynatree({
 persist: true,

 onPostInit: function(isReloading, isError) {
        this.reactivate();
 },

 onActivate: function(dtnode) {
        var isInitializing = dtnode.tree.isInitializing(); 
        var isReloading = dtnode.tree.isReloading(); 
        var isUserEvent = dtnode.tree.isUserEvent(); 

       if( dtnode.data.url )
          window.open(dtnode.data.url); 

}   

    });

});

What should I do instead of window.open so the url reloads in the same window, not opening a new one? There's no name in the web page where I could use iFrame way.

link|improve this question

0% accept rate
Maybe this answers your question: stackoverflow.com/questions/6070484/… – mar10 Sep 10 '11 at 8:56
feedback

3 Answers

dynatree now allows you to put anchor tags in the li elements. So you can simply do:

<li><a href="www.mypage.com\index.php?CId=2&MId=14&MTId=1" target="_top">mylink</a>

Take a look at the navigation examples here.

link|improve this answer
feedback

have you tried this solution:

$(document).ready(function() {

   $("#tree").dynatree({ persist: true,

      onPostInit: function(isReloading, isError) { this.reactivate(); },

      onActivate: function(dtnode) { 
         var isInitializing = dtnode.tree.isInitializing(); 
         var isReloading = dtnode.tree.isReloading(); 
         var isUserEvent = dtnode.tree.isUserEvent();

         if( dtnode.data.url )
            window.location.href = dtnode.data.url; 
      }
   });
});
link|improve this answer
Hi Felle I would love to hear from you of an answer of another side-effect issue below. – chz Aug 3 '10 at 1:49
Hi Felle When I execute with Dynatree, I saw the html content it generated The html file shows <div> <span class="ui-dynatree-folder ui-dynatree-expanded ui-dynatree-has- children ui-dynatree-lastsib ui-dynatree-exp-el ui-dynatree-ico-ef" id="ui-dynatree-id-id3.2"> <span class="ui-dynatree-empty"></span> <span class="ui-dynatree-expander"></span> <span class="ui-dynatree-icon"></span> <a href="#" class="ui-dynatree-title">Click Me here</a> </span> – chz Aug 3 '10 at 8:01
<div><span class="ui-dynatree-document ui-dynatree-lastsib ui-dynatree- exp-cl ui-dynatree-ico-c" id="ui-dynatree-id-_8"> <span class="ui-dynatree-empty"></span> <span class="ui-dynatree-empty"></span> <span class="ui-dynatree-connector"></span> <span class="ui-dynatree-icon"></span> <a href="#" class="ui-dynatree-title">Inside Click Me here</a></span> </div> – chz Aug 3 '10 at 8:01
Bad formatting let me try – chz Aug 3 '10 at 8:02
Stackoverflow stops me from posting cuz of lack of points – chz Aug 3 '10 at 8:08
show 5 more comments
feedback

I would suggest

onActivate: function(node) { 
    if( node.data.href ){
        // use href to change the current frame:
        window.location.href = node.data.href; 
        // or load data into a div tag:
//      $("#div").load(node.data.href);
        // or open href in another target frame:
//      window.open(node.data.href, node.data.target);
    }
}

See also here for another example: How to make hyperlinks in dynaTree jQuery plugin clickable?

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.