onLoadError

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

void onLoadError(object xhr);
xhrobjectan xhr object

Example

dtable.attachEvent("onLoadError", function(xhr){
    webix.message("Loading error");
));

Details

The event occurs after XML loading is complete.

See also
Back to top