Hi, All.
I studied the problem how to set callback function on the JSON response and
I found that when JSON response is received no callback function is called.
It happens only if json="true". This happens in the file form.js in
submitAsync:function(form, content, submitName, parms) function. I think it
should look like that:
if (this.forms[formId].json || parms && parms.json) {
kwArgs.headers={"json":true};
kwArgs.mimetype="text/json";
---> kwArgs.load=(function(){tapestry.loadJson.apply (this, arguments);});
} else {
kwArgs.headers={"dojo-ajax-request":true};
kwArgs.mimetype="text/xml";
kwArgs.load=(function(){tapestry.load.apply(this, arguments);});
}
Is it bug?
Or am I wrong?
Thanks.