occurs when server side returns invalid response during data loading
| text | string | the text of server response |
| xml | object | the XML object of server response |
| loader | object | the XMLHttpRequest object related to data loading |
store.attachEvent("onLoadError", function(text, xml, loader){
// custom code
});
Back to top