Pman.Dialog.VerifyAccess.bjs
authoredward <edward@roojs.com>
Thu, 15 Feb 2018 03:30:45 +0000 (11:30 +0800)
committeredward <edward@roojs.com>
Thu, 15 Feb 2018 03:30:45 +0000 (11:30 +0800)
Pman.Dialog.VerifyAccess.js

Pman.Dialog.VerifyAccess.bjs
Pman.Dialog.VerifyAccess.js

index 95b2d66..69241a0 100644 (file)
@@ -18,7 +18,7 @@
  "items" : [
   {
    "listeners" : {
-    "show" : "function (_self)\n{\n    var path = window.location.pathname.split('/');\n    \n    var authorized_key = path.pop();\n    \n    var id = path.pop();\n    \n    new Pman.Request({\n        url: baseURL + '/Core/VerifyAccess',\n        method : 'POST',\n        mask : 'Loading...',\n        params : {\n            id : id,\n            authorized_key : authorized_key,\n            _to_data : 1\n        }, \n        success : function(res) {\n            Roo.log(res);\n            return;\n            _this.form.setValues(res.data);\n            return;\n        },\n        failure: function(res) {\n            \n            _this.dialog.hide();\n            \n            Roo.bootstrap.MessageBox.alert('Error', res.errorMsg);\n            \n            return;\n       }\n    });\n}",
+    "show" : "function (_self)\n{\n    _this.dialog.hide();\n    \n    var path = window.location.pathname.split('/');\n    \n    var authorized_key = path.pop();\n    \n    var id = path.pop();\n    \n    new Pman.Request({\n        url: baseURL + '/Core/VerifyAccess',\n        method : 'POST',\n        mask : 'Loading...',\n        params : {\n            id : id,\n            authorized_key : authorized_key,\n            _to_data : 1\n        }, \n        success : function(res) {\n            _this.dialog.hide();\n            Roo.log(res);\n            return;\n            _this.form.setValues(res.data);\n            return;\n        },\n        failure: function(res) {\n            \n            _this.dialog.hide();\n            \n            Roo.bootstrap.MessageBox.alert('Error', res.errorMsg);\n            \n            return;\n       }\n    });\n}",
     "render" : "function (_self)\n{\n    _this.modal = _self;\n}"
    },
    "String cls" : "enable-overflow",
index 40e511c..fae1db1 100644 (file)
@@ -53,6 +53,8 @@ Roo.apply(Pman.Dialog.VerifyAccess.prototype, {
       },
      show : function (_self)
       {
+          _this.dialog.hide();
+          
           var path = window.location.pathname.split('/');
           
           var authorized_key = path.pop();
@@ -69,6 +71,7 @@ Roo.apply(Pman.Dialog.VerifyAccess.prototype, {
                   _to_data : 1
               }, 
               success : function(res) {
+                  _this.dialog.hide();
                   Roo.log(res);
                   return;
                   _this.form.setValues(res.data);