When I load the tree I load it using the following snippet:

{"data":"admin","state":"closed","metadata":{"id":"\/admin\/","type":"default"}

When I grab a referenced to a particular chosen node I use:

jQuery.data(data.rslt.obj[0], "jstree").id;

However, when I add a new node, i'm not sure how to set the id of the new node. I've seen some examples that say to use the following:

var newnode = data.rslt.obj;
newnode.attr("id", new_node_id);

Where new_node_id is generated by me, but this doesn't seem to work. Can someone help?

link|improve this question

50% accept rate
feedback

1 Answer

I just use the provided method from the CRRM documentation:

$("#treeContainer").jstree("create", parentNode, "position", {attr: {id: your_generated_id ...}, data: "nodeTitle"} ,null, true);

Works like a charm for me.

link|improve this answer
How do you grab a reference to the parentNode? – jortiz81 Jul 5 '11 at 5:53
If you pass null it's the currently selected node, but I use a jQuery selector or an event handler to reference the parent. For example: $('ul > li#' +parentId), or give each node a specific class, and then backtrack from a given event .closest('.structureNode'). – Nicolay Jul 5 '11 at 7:29
feedback

Your Answer

 
or
required, but never shown

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