onAjaxCallbackFailed
Arguments
- eobject
An object with the following properties:
- xbasicFunctionNamestring
The Xbasic function that was called in the Ajax Callback.
- ajaxEventstring
The name of the event that triggered the Ajax Callback.
- callbackIdstring
A GUID that identifies the callback, allowing you to match it with the canAjaxCallback event for a specific callback.
Description
Fires if an Ajax callback fails to complete (i.e. the server does not send a response).
Example
var title = "Callback Failed"; var message = "<div>Callback ("+e.xbasicFunctionName+") failed. No response from server.</div>"; A5.msgBox.show(title,message,'o');
See Also