DataObjects/core.sql
[Pman.Core] / Pman.js
diff --git a/Pman.js b/Pman.js
index e436785..dd99f1c 100644 (file)
--- a/Pman.js
+++ b/Pman.js
@@ -19,8 +19,8 @@ if (typeof(_T) == 'undefined') { _T={};}
  
 
 
-Roo.XComponent.on('register', function(e) { if (typeof(Pman) != 'undefined') { return Pman.xregister(e); } });
-Roo.XComponent.on('beforebuild', function(e) { if (typeof(Pman) != 'undefined') { return Pman.xbeforebuild(e); } });
+Roo.XComponent.on('register', function(e) { if (typeof(Pman) != 'undefined') { return Pman.xregister(e); } return true;  });
+Roo.XComponent.on('beforebuild', function(e) { if (typeof(Pman) != 'undefined') { return Pman.xbeforebuild(e); } return true; });
 
 Roo.XComponent.on('buildComplete',  
      function() {
@@ -560,7 +560,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 +623,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 +668,7 @@ Pman = new Roo.Document(
             scope: this
             
         });
+        */
     },
     
     
@@ -891,11 +895,7 @@ Pman = new Roo.Document(
                 obj.disabled = true;
                 return;
             }
-            if (appDisabled.indexOf(permname) > -1)  {
-                Roo.log(permname + " is Disabled for this site");
-                obj.disabled = true;
-                return;
-            }
+        
             
             
         }