DataObjects/core.sql
[Pman.Core] / Pman.js
diff --git a/Pman.js b/Pman.js
index d4ac960..3de8979 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();
              
                 
@@ -560,7 +561,7 @@ Pman = new Roo.Document(
                 }
                 // what about the toolbar??
                 tab.grid.getView().mainWrap.mask("Deleting");
-                Pman.request({
+                new Pman.Request({
                     url: baseURL + '/Roo/'+tbl+'.php',
                     method: 'GET',
                     params: {
@@ -623,6 +624,9 @@ Pman = new Roo.Document(
      * 
      */
     request : function(c) {
+        return new Pman.Request(c);
+        /*
+        
         var r= new Roo.data.Connection({
             timeout : typeof(c.timeout) == 'undefined' ?  30000 : c.timeout
         });
@@ -665,6 +669,7 @@ Pman = new Roo.Document(
             scope: this
             
         });
+        */
     },