diff options
author | wei <> | 2006-09-23 06:40:38 +0000 |
---|---|---|
committer | wei <> | 2006-09-23 06:40:38 +0000 |
commit | 6fd29b65290509f55172efccaacb5f91a4a884df (patch) | |
tree | 42b15f1a71afec31812fc0961f7fe15b2e4a5dd9 /framework/Web/Javascripts/js/debug/ajax.js | |
parent | a5467e842316daf6a8a4345740f05a9731167ce1 (diff) |
Add TJsonService
Diffstat (limited to 'framework/Web/Javascripts/js/debug/ajax.js')
-rw-r--r-- | framework/Web/Javascripts/js/debug/ajax.js | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/framework/Web/Javascripts/js/debug/ajax.js b/framework/Web/Javascripts/js/debug/ajax.js index 5bd22afa..5acdfb63 100644 --- a/framework/Web/Javascripts/js/debug/ajax.js +++ b/framework/Web/Javascripts/js/debug/ajax.js @@ -302,6 +302,18 @@ Object.extend(Ajax.Request.prototype, if (event == 'Complete')
{
+ if ((this.header('Content-type') || '').match(/^text\/javascript/i))
+ {
+ try
+ {
+ json = eval('(' + transport.responseText + ')');
+ }catch (e)
+ {
+ if(typeof(json) == "string")
+ json = Prado.CallbackRequest.decode(result);
+ }
+ }
+
try
{
Prado.CallbackRequest.updatePageState(this,transport);
@@ -314,8 +326,6 @@ Object.extend(Ajax.Request.prototype, } catch (e) {
this.dispatchException(e);
}
- if ((this.header('Content-type') || '').match(/^text\/javascript/i))
- this.evalResponse();
}
try {
|