Documentation

onLoadError

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

void onLoadError(string text,object xml,object xhr){ ... };

Parameters

textstringthe server side response as plain text
xmlobjectan xml object ( may be null if XML data was corrupted )
xhrobjectan xhr object

Example

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

Details

The event occurs after XML loading is complete.

See also

Back to top