Working with JsTree : Create a tree


jstree is one of the most popular javascript tree user control around.  However, using it is not so straight forward. Let's go ahead and create your first jsTree. There are several ways to create a jstree either through HTML or via JSON. This is really just a matter of loading the proper plugin. Think of plugin as feature for your jstree.


Please include jquery and jquery.jstree.js in your page. The code sample below show how to create a simple jsTree, JSON way.


$("#" + treeDivControlName).jstree({
"json_data" : {
"data" : [
c1.node, c2.node, companyNode.node
]
},
"plugins" : [ "themes", "json_data", "ui", "checkbox", "crrm", "contextmenu" ]
}).bind("select_node.jstree", function (e, data)
{
 alert(data.rslt.obj.data("id") +  ":" + data.rslt.obj.data("nodeType"));
});



`
Check out the plugin section - you can see we have checkbox, contextmenu. These are also known as features. For example, checkbox plugin renders checkbox for each tree node. Context menu popups a menu whenever user right click on the tree.

Using Method in jstree.

There are two different ways of calling methods in JsTree as indicated by the docs.

Method #1 and samples

Noticed the bold method name passed in as string. This method create a new node in your tree. Please refer to doc to get more.

$("#" + treeDivControlName).jstree("create", selectedNode, "inside", createNode.node);


Method #2 and samples 

These methods are basically perceded by underscore ( _ ) which typically used by internal developers for testing and debugging purposes.

Sample code to call _get_children(node);

var treeInstance = $.jstree._reference($("#"+ treeDivControlName));
var child = treeInstance._get_children(selectedNode);


If you refer to the documentation, i think you will know how to get most of the call right.

That's all for now, till next time.




Comments

Popular posts from this blog

The specified initialization vector (IV) does not match the block size for this algorithm