Pman.Request.js
[Pman.Core] / Pman.Request.js
index bac2833..13c2ab4 100644 (file)
@@ -8,12 +8,11 @@
 var t = new Pman.Request({
     url: baseURL + '/Images/Download/0/myfile.jpg',
     params: { .... },
-    success : function(data) {
-        
-    },
-    failure : function () {
-         
-    }
+    success : function(res) {
+        Roo.log(res.data);
+        Roo.log(res.total);
+        ....
+    } 
 });
 
 </code></pre>
@@ -25,6 +24,7 @@ var t = new Pman.Request({
 * @cfg  {Object/String/Function} params (Optional) An object containing properties which are used as parameters to the
 *       request, a url encoded string or a function to call to get either.
 * @cfg  {Function} success  called with ( JSON decoded data of the data.. )
+* @cfg  {Function} success  called with ( JSON decoded data of the data.. )
 */
 
 Pman.Request = function(config){
@@ -34,8 +34,9 @@ Pman.Request = function(config){
 }
 
 Roo.extend(Pman.Request, Roo.data.Connection, {
-    
+    // private
     processResponse : function(response) {
+        // convert the Roo Connection response into JSON data.
         
         var res = '';
         try {
@@ -81,10 +82,10 @@ Roo.extend(Pman.Request, Roo.data.Connection, {
         var options = response.argument.options;
         response.argument = options ? options.argument : null;
         this.fireEvent("requestexception", this, response, options, e);
-        Roo.callback(options.failure, options.scope, [response, options]);
-        Roo.callback(options.callback, options.scope, [options, false, response]);
-        if (!options.failure) {
-            
+        var res = Roo.callback(options.failure, options.scope, [response, options]);
+        if (res !== true) {
+            Roo.MessageBox.hide(); // hide any existing messages..
+            Roo.MessageBox.alert("Error", "Error Sending" + JSON.stringify(res));
         }
     }
 });
\ No newline at end of file