I am totally new to jquery and jstree...I am using jstree and populating the data using xml.But would like to capture event for each node whether checked or not along with theirs Ids.I tried using jstree's plugins API like change_state(),check_node() or select_node() but its not working.Also would like to get all selected nodes data in an array for further processing..Can any1 help

Thanks...

link|improve this question
which jstree plugin you are using? – Vivek Jan 28 '11 at 12:13
@Vivek probably jquery.jstree. @user529011 Can you give an example of the code your using. Maybe isolate your issue on jsfiddle.net – Raynos Jan 28 '11 at 12:28
jquery jstree v.1.0-version – user529011 Jan 28 '11 at 12:37
function checked_unchecked(){ $.jstree._reference("#demo").get_selected(); } this gives me the object but no ids for the checked items. Also tried to bind check_node and select_node as .jstree().bind("check_node.jstree",function(data){ alert(data); }) but no result – user529011 Jan 28 '11 at 12:52
feedback

2 Answers

I like the jstree plugin but it's not well documented, nor is it built to conform to say, jquery ui standards of plugin development. I have used 1.0rc2 to accomplish what you're trying to do.

You have to bind the "loaded" event before you instantiate the jstree so I'm guessing it's the same with the "change_state" event. The other thing to watch out for is that "change_state" is more than just a change due to a check box. For instance it will also fire when you expand a node (but not collapse, for some reason). That said, I do some kludgey checking in the "change_state" handler to try and filter out unwanted events from the checkbox change. The minimum code for tapping the handler is

$("#treeElement").bind("change_state.jstree", function (e, d) {
    var tagName = d.args[0].tagName;
    var refreshing = d.inst.data.core.refreshing;
    if ((tagName == "A" || tagName == "INS") &&
      (refreshing != true && refreshing != "undefined")) {
    //if a checkbox or it's text was clicked, 
    //and this is not due to a refresh or initial load, run this code . . .
    }
});

Your clicked element is then d.rslt and you can get checked items with d.inst.get_checked() for just the element clicked, or d.inst.get_checked(d.rslt) for an object containing the sub nodes that are checked. Use jquery's .each function to process the nodes.

link|improve this answer
saved my Day... – cloudYturtle May 3 at 9:55
feedback

The current version of jstree seems to have a problem with the check_node.jstree binding. Also the select_node.jstree binding does not fire with checkbox plugin active with the current release.

Head over to HERE where you can ask the creator questions or even view questions already asked.

As for $.jstree._reference("#demo").get_selected(); you can get the ID of each item by using $.jstree._reference("#demo").get_selected().each(function(index,element){alert($(element).attr("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.