The status of the request, as returned from jQuery.ajax
<divid="splitter"><div>Pane A</div><div>Pane B</div></div><script>$("#splitter").kendoSplitter({error:function(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("Pane #"+$(e.pane).index()+" could not be loaded from server"+" (status "+ e.xhr.status+")");}});</script>
<divid="splitter"><div>Pane A</div><div>Pane B</div></div><script>functionsplitter_error(e){/* The result can be observed in the DevTools(F12) console of the browser. */console.log("Pane #"+$(e.pane).index()+" could not be loaded from server"+" (status "+ e.xhr.status+")");}$("#splitter").kendoSplitter();var splitter =$("#splitter").data("kendoSplitter");
splitter.bind("error", splitter_error);</script>