Check documentation for the latest version of dhtmlxSuite onLoadError DHTMLX Docs

onLoadError

occurs when server side returns invalid response during data loading

void onLoadError(string text,object xml,object loader);
textstringthe text of server response
xmlobjectthe XML object of server response
loaderobjectthe XMLHttpRequest object related to data loading

Example

store.attachEvent("onLoadError", function(text, xml, loader){
    // custom code
});

Back to top