DataObjects/core.sql
[Pman.Core] / Pman.js
diff --git a/Pman.js b/Pman.js
index dd99f1c..6468f75 100644 (file)
--- a/Pman.js
+++ b/Pman.js
@@ -417,13 +417,14 @@ Pman = new Roo.Document(
     onLoadTrackCall : function(id,cb, cls) {
         Roo.get(document.body).mask("Loading Document details");
 
-        Pman.request({
+        new Pman.Request({
             url: baseURL + '/Roo/Documents.html',  
             params: {
                 _id: id
             },  
             method: 'GET',  
-            success : function(data) {
+            success : function(res) {
+                var data = res.data;
                 Roo.get(document.body).unmask();
              
                 
@@ -562,7 +563,7 @@ Pman = new Roo.Document(
                 tab.grid.getView().mainWrap.mask("Deleting");
                 new Pman.Request({
                     url: baseURL + '/Roo/'+tbl+'.php',
-                    method: 'GET',
+                    method: 'POST',
                     params: {
                         _delete : r.join(',')
                     },
@@ -619,56 +620,13 @@ Pman = new Roo.Document(
     },
     /**
      * Depreciated - USE new Pman.Request
-    * 
+    *  We need to replace all the uses with this, however the api is slightly different,
+    *  the success argument is res.data, not res..
      * 
      */
     request : function(c) {
         return new Pman.Request(c);
-        /*
-        
-        var r= new Roo.data.Connection({
-            timeout : typeof(c.timeout) == 'undefined' ?  30000 : c.timeout
-        });
-        r.request({
-            url: c.url,
-            method : c.method,
-            params: c.params,
-            xmlData : c.xmlData,
-            success:  function(response, opts)  {  // check successfull...
-               
-                var res = Pman.processResponse(response);
-                
-                if (!res.success) { // error!
-                    if (c.failure) {
-                        if (true === c.failure.call(this,response, opts)) {
-                            return;
-                        }
-                    }
-                    Roo.MessageBox.hide();
-                    Roo.MessageBox.alert("Error", res.errorMsg ? res.errorMsg : "Error Sending");
-                    return;
-                }
-                
-                c.success.call(this, res.data);
-                
-                return; 
-            },
-            failure :  function(response, opts)  {  // check successfull...
-                
-                if (c.failure) {
-                    if (true === c.failure.call(this,response, opts)) {
-                        return;
-                    }
-                }
-                Roo.MessageBox.hide();
-                Roo.MessageBox.alert("Error", "Connection timed out sending");
-                Roo.log(response);
-                
-            },
-            scope: this
-            
-        });
-        */
+          
     },