I have a button that reloads (resends an AJAX request) the jsTree once is clicked.

Here is a sample configuration code I have:

treeContainer.bind("loaded.jstree", function () {
    alert("the tree is loaded");
}).jstree(config);

The problem I experience is that I do not have the alert (wrapped in a callback function) displayed once the 'reload' button is clicked the 2nd, 3rd, etc. times. Am I using the wrong jstree status event?

To summarize, I want a jsTree callback function to be executed each time I click the 'reload' button.

I am currently using jsTree 1.0-rc1 (rev. 191).

link|improve this question

80% accept rate
feedback

1 Answer

From the jstree documentation:

.loaded ()

A dummy function, whose purpose is only to trigger the loaded event. This event is triggered once after the tree's root nodes are loaded, but before any nodes set in initially_open are opened.

So you can call this method from the success callback of your ajax call. Something like this:

$.ajax({
  url: "yourscript-url",
  success: function(){
    $('selector-for-jstree-container').jstree('loaded');
  }
});

See also the "Interacting with the tree" section on the same jstree documentation page.

link|improve this answer
this is not quite what I needed... I want to keep my jsTree-related configurations in one place. the thing I'm looking for is an event like this: treeContainer.bind("reloaded.jstree", function () {...}).jstree(...) – John Doe Jun 23 '11 at 16:37
@John Doe I'm sorry but I don't think there is an event like this in jstree. You'll either have to work your way around that (similarly as I suggested) or extend the jstree core and implement this new event. – András Szepesházi Jun 24 '11 at 5:54
Thanks anyway! – John Doe Jun 24 '11 at 8:22
feedback

Your Answer

 
or
required, but never shown

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