I am using MVC to pass JSON data to JsTree and show a hierarchical view of information. Everything is working just fine, however, there are times when the user does not have access the the data or for some reason the MVC action throws an exception:

In these cases, the action passes a JSON error message and sets the HttpStatusCode to NotAccepted or InternalServerError.

However the jsTree's sinner keeps spinning and I don't seem to find a way to make it stop and show the error message.

Has anyone solved this issue before? How can one does error handling when using JsTree's JSON data plugin?

UPDATE:

I figured out how to capture the error:

 $("#jstree1").jstree({
       "json_data": {
           "ajax": {
               "url": serviceUrl,
               "data": function (n) {
                       return { pid: n.attr ? n.attr("id") : "" };
               },
               "error": function (x, s, r) { var err = $.parseJSON(x.responseText); if (err!="") { alert(err); } }
           }
    }

It seems that JsTree does get the MVC http statusCode and the error, now I need to figure out how to tell the JsTree to stop waiting and remove the spinner image!

I am also looking for a good way of showing the error in JsTree, or should I manage the error message outside of it?

link|improve this question

60% accept rate
Further discovery, it is possible to capture the error. – sam.arj Dec 1 '11 at 15:16
feedback

1 Answer

Maybe you should look into handling this error a layer above the .jstree. Maybe by handling the window.onerror event you can achieve this. In here you could call a function that will rebuild the tree or something? Be sure to include this script as the first one in your page.

<script type="text/javascript">
window.onerror = function(x, s, r){
  alert('An error has occurred!')
 }
</script>
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.