also noted that 'onComplete', 'onError' and 'onSuccess' for mobi:ajax also not working correctly, so working on that too.
This was not adequately tested in previous releases
noted that code from mobi.AjaxReuqest function(cfg) :-
....
function (onBeforeSubmit, onBeforeUpdate, onAfterUpdate, onNetworkError, onServerError) {
var context = {};
onAfterUpdate(function (responseXML) {
if (cfg.onsuccess && !cfg.onsuccess.call(context, responseXML, null /status/, null /xhr/))
{
return;
}
mobi.AjaxResponse.call(context, responseXML);
});
if (cfg.oncomplete) {
onAfterUpdate(function (responseXML)
{
cfg.oncomplete.call(context, null /*xhr*/, null /*status*/, context.args);
}
);
}
if (cfg.onerror) {
onNetworkError(function (responseCode, errorDescription)
{
cfg.onerror.call(context, null /*xhr*/, responseCode /*status*/, errorDescription /*error description*/)
}
);
onServerError(function (responseCode, responseText)
{
cfg.onerror.call(context, null /*xhr*/, responseCode /*status*/, responseText /*error description*/)
}
);
}
whos that there is a cfg.onerror.call that is not being interpreted correctly. Original ace code has changed considerably and makes us of jquery for the callback,.
also noted that 'onComplete', 'onError' and 'onSuccess' for mobi:ajax also not working correctly, so working on that too.
This was not adequately tested in previous releases
noted that code from mobi.AjaxReuqest function(cfg) :-
{ return; }....
function (onBeforeSubmit, onBeforeUpdate, onAfterUpdate, onNetworkError, onServerError) {
var context = {};
onAfterUpdate(function (responseXML) {
if (cfg.onsuccess && !cfg.onsuccess.call(context, responseXML, null /status/, null /xhr/))
mobi.AjaxResponse.call(context, responseXML);
{ cfg.oncomplete.call(context, null /*xhr*/, null /*status*/, context.args); }});
if (cfg.oncomplete) {
onAfterUpdate(function (responseXML)
);
{ cfg.onerror.call(context, null /*xhr*/, responseCode /*status*/, errorDescription /*error description*/) }}
if (cfg.onerror) {
onNetworkError(function (responseCode, errorDescription)
);
{ cfg.onerror.call(context, null /*xhr*/, responseCode /*status*/, responseText /*error description*/) }onServerError(function (responseCode, responseText)
);
}
whos that there is a cfg.onerror.call that is not being interpreted correctly. Original ace code has changed considerably and makes us of jquery for the callback,.