Skip to content

onLoadError

fires when an error occurs during data loading (invalid server side response)

function onLoadError(
// an xhr object
xhr: object
): void
dgrid.attachEvent("onLoadError", function(xhr){
console.log("Loading error");
});

The event occurs after XML loading is complete.

Articles