I am new to JSTree and i have a task on it. Please let me know is there any good websites to learn jstree in a faster way.

link|improve this question

68% accept rate
1  
What does 'pls' mean? I've never seen that word before. – Delan Azabani Apr 20 '11 at 13:19
feedback

4 Answers

up vote 5 down vote accepted

I'm using it right now and I found it a bit of a learning curve to understand everything that is going on with it. The base setup is really good for getting it working quickly and I'm still using the same skeleton now.

Their documentation is pretty good if you want to find a general "what can I do". Where I started to really understand it was reading through the code and tracing out jstree objects in firebug and seeing "whats in there".

link|improve this answer
@ locrizak, can u please tel me how can i edit and rename my tree nodes using jstree? please.. – vissu pepala Apr 21 '11 at 4:40
@vissu pepalaI have the code samples at the office so ill let you know tomorrow – locrizak Apr 21 '11 at 4:43
@vissu pepalal take a look at the demo page. Everything ive done so far (minus a double click) has been done through the code on this page. jstree.com/demo – locrizak Apr 21 '11 at 12:55
feedback

I have written a basic tutorial that will hopefully get you started using it. It is located here - http://tkgospodinov.com/jstree-part-1-introduction/.

link|improve this answer
great tutorial, helped me alot thanks – Hishalv Oct 8 '11 at 17:10
feedback

Jstree is a wonderful plugin , but what it lacks is a good documentation.This makes the learning curve bit tricky and steep and at most times frustrating. Said that apart from that I think its a wonderful plugin to have and has solved a lot of my problems.

About tutorial, I think your primary learning resource will be the documentation provided on Jstree.com Second place after you done with the documentation would be, the Jstree google group. Another nice place to look through the examples would be

http://luban.danse.us/jazzclub/javascripts/jquery/jsTree/reference/_examples/1_datasources.html

I hope this helps. I will add to this if I find anything worth mentioning.

Regards

Rahul More

link|improve this answer
feedback

I could not get jstree to work at all.

Followed TK Gospodinov basic setup and it didn't work.

This is what I discovered:

Here is a complete basic example:

<!DOCTYPE html>
<html>
<head>
    <title>Demo</title>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script type="text/javascript" src="/site_media/js/jstree/jquery.jstree.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $("#selector").jstree();
        });
    </script>
</head>
<body>
    <div id="selector">
        <ul>
            <li><a>Team A's Projects</a>
                <ul>
                    <li><a>Iteration 1</a>
                        <ul>
                            <li><a>Story A</a></li>
                            <li><a>Story B</a></li>
                            <li><a>Story C</a></li>
                        </ul>
                    </li>
                    <li><a>Iteration 2</a>
                        <ul>
                            <li><a>Story D</a></li>
                        </ul>
                    </li>
                </ul>
            </li>
        </ul>
    </div>
</body>
</html>
link|improve this answer
Not only for jsTree, most of the javascript plugins will be like that only. Just javascript files may not work, It may depends upon some other files also. In case of JsTree this is very important. – vissu pepala Apr 13 at 4:41
That's good info.Thanks. But for some reason even this didn't work for me. Instead of $("#selector").jstree() I had to use $("#selector").jstree({ "plugins" : [ "themes", "html_data" ] }) – HashName Apr 17 at 13:51
@Graham, thanks for this post, it worked for me. I just have a quick question. Let's say, user clicked "Story A" link, and you you would like to display some information about Story A in the right hand side on an iframe. how would you do that? – george willy Apr 18 at 21:04
Well done @Graham Not much info provided in the jstree website regarding the themes folder and when i clicked view source of their demo page, I totally got confused. For anyone still struggling where to copy the themes folder, copy it under the same parent folder as jquery.jstree.js – SyAu May 3 at 12:42
feedback

Your Answer

 
or
required, but never shown

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