How can I get the id of the selected node in a jsTree?

function createNewNode() {
  alert('test');
  var tree = $.tree.reference("#basic_html");
  selectedNodeId = xxxxxxxxx; //insert instruction to get id here
  tree.create({ data : "New Node Name" }, selectedNodeId);
}
link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

Nodes in jsTree are essentially wrapped list items. This will get you a reference to the first one.

var n = $.tree.focused().get_node('li:eq(0)')

You can replace $.tree.focused() if you have a reference to the tree.

To get the id, take the first matched element

if (n.length)
    id = n[0].id

or you can use the jQuery attr function, which works on the first element in the set

id = n.attr('id');
link|improve this answer
feedback

Unable to get harpo's solution to work, and unwilling to use Olivier's solution as it uses internal jsTree functions, I came up with a different approach.

$('#tree').jstree('get_selected').attr('id')

It's that simple. The get_selected function returns an array of selected list items. If you do .attr on that array, jQuery will look at the first item in the list. If you need IDs of multiple selections, then treat it as an array instead.

link|improve this answer
2  
This definitely should be the accepted solution!!! – m0s Aug 12 '11 at 17:57
2  
no idea why data.rslt.obj.attr("id") doesn't work here (if you have data as the argument in a onselect handler), but this does the trick and finishes a >1h search for a solution - thanks! – Nicolas78 Sep 1 '11 at 16:58
1  
Definitely the proper solution. – davidethell Oct 14 '11 at 10:55
Depending on which ID you need (DOM or actual node data) try this instead: $('#tree').jstree('get_selected').data('id') – nickb Nov 6 '11 at 19:42
Why was this downvoted? – Brad Apr 26 at 23:15
show 1 more comment
feedback
  $.jstree._reference('#my_tree_container')._get_node(null, true).each(function() {
    id = $(this).attr("id");
    alert('Id selected: ' + id);        
  });
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.