I have a div id="result" that I use to display results of users actions. I put there plain text and html too. After each user action this div is overwritten with new results.

Now I want to display inside this div an instance of jsTree I have working jsTree that loads nicely on page load but it doesn't load after <div id="tree"></div> is inserted inside my result div.

I tried two lines below but none worked.

 $("#tree").jstree("loaded");  
 $("#tree").jstree("refresh"); 

Any idea how to make the jsTree to be displayed a after button click? Please play on jsfiddle where you can see one tree already and I want another to be displayed after clicking the button. I am after the tree not the text.

I think I need to reload or refresh the tree after I place jstree div inside html.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

tree2 was not created in the first place since <div id="tree2"> was not there when you call '$("#tree2").jstree'.

So when you press the button, first tree is correctly refreshed but tree2 is not shown for the reason above.

At button pressed, you have to recreate tree2 by calling '$("#tree2").jstree', or you can just hide <div id="tree2"> when you call $("#tree2").jstree. I just updated your fiddle ( http://jsfiddle.net/fmn6g/10/) so you can try.

link|improve this answer
I like the first option better. Made it work here jsfiddle.net/radek/fmn6g/11 Thank you. – Radek Aug 21 '11 at 5:12
feedback

To make it happen on a Button Click, just do this:

<script type="text/javascript">
$(document).ready(function() {
$('#button-id').click(function() {
 $("#tree").jstree("loaded");  
 $("#tree").jstree("refresh"); 
});
});
</script>

Remember to change button-id to the actual id of the button.

Hope this helps.

link|improve this answer
Could you try in jsfiddle? I believe that I tried that already. – Radek Aug 19 '11 at 6:36
@Radek Hmm, when I click the button it seems to work already. Is there something that isn't happening that you want to happen? – Nathan Aug 19 '11 at 6:49
I updated jsfiddle, hope it's clearer now. I want the tree to be displayed after clicking the button. Now, second tree. – Radek Aug 19 '11 at 7:03
Oh, so the second tree is not displaying corrently? I will look into it and see if I can find the problem. By the way, I am curious to know why you are using traditional JS: document.getElementById("results").innerHTML+="tree #2<div id=\"tree2\"></div>"; in the middle of jQuery? It probably still works right, just I'm wondering why you have to use that instead of jQuery. – Nathan Aug 19 '11 at 7:26
The second tree is not displaying at all :-) Well, I recently started to use jQuery so now and then I use/copy old code. I am very new with both js and jQuery though. – Radek Aug 19 '11 at 7:28
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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