When I do the following

$('#tree').dynatree("option","initAjax",{url:"http://google.com"});

I want dynatree to forget about current tree data and reload with new data from the specified url instead. But I find it does not do that by default.

Thanks.

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

look at the tree.reload() method, it should do what you are after.

see the docs here: http://wwwendt.de/tech/dynatree/doc/dynatree-doc.html#h8.2

as in the docs, the tree is the internal drawing of the tree, and you get it by calling the getTree command: $("#node").dynatree("getTree")

link|improve this answer
what is "tree" here and how can I get access of it ?? – beginner Sep 6 '11 at 10:20
are you there ?? – beginner Sep 6 '11 at 10:51
I have added an edit to be more clear. – shortstick Sep 6 '11 at 10:56
super THANKSS itss working :) – beginner Sep 6 '11 at 10:59
feedback

Function the initialization:

function InitTree() { $("#tree3").dynatree({ (...init params...) }); }

InitTree();

To reload data, call:

$("#tree3").dynatree("destroy"); InitTree();

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.