From 6172f6004eac181317b70b3433b204740ab62a04 Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Fri, 26 Oct 2018 12:44:26 +0800 Subject: [PATCH] Pman.Dialog.CoreProject.bjs Pman.Dialog.CoreProject.js --- Pman.Dialog.CoreProject.bjs | 2 +- Pman.Dialog.CoreProject.js | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Pman.Dialog.CoreProject.bjs b/Pman.Dialog.CoreProject.bjs index 926e967d..5bc20699 100644 --- a/Pman.Dialog.CoreProject.bjs +++ b/Pman.Dialog.CoreProject.bjs @@ -74,7 +74,7 @@ "items" : [ { "listeners" : { - "|actioncomplete" : "function(_self,action)\n{\n if (action.type == 'setdata') {\n //_this.dialog.el.mask(\"Loading\");\n //this.load({ method: 'GET', params: { '_id' : _this.data.id }});\n return;\n }\n if (action.type == 'load') {\n \n return;\n }\n if (action.type =='submit') {\n \n \n _this.dialog.hide();\n \n if (_this.callback) {\n _this.callback.call(_this, _this.form.getValues());\n }\n _this.form.reset();\n return;\n }\n}\n", + "|actioncomplete" : "function(_self,action)\n{\n if (action.type == 'setdata') {\n //_this.dialog.el.mask(\"Loading\");\n if (_this.data.id) {\n this.load({ method: 'GET', params: { '_id' : _this.data.id }});\n }\n return;\n }\n if (action.type == 'load') {\n \n return;\n }\n if (action.type =='submit') {\n \n \n _this.dialog.hide();\n \n if (_this.callback) {\n _this.callback.call(_this, _this.form.getValues());\n }\n _this.form.reset();\n return;\n }\n}\n", "|rendered" : "function (form)\n{\n _this.form= form;\n}\n" }, "$ url" : "baseURL + '/Roo/Projects.php'", diff --git a/Pman.Dialog.CoreProject.js b/Pman.Dialog.CoreProject.js index 99e32d05..e0ac85d3 100644 --- a/Pman.Dialog.CoreProject.js +++ b/Pman.Dialog.CoreProject.js @@ -139,11 +139,13 @@ Pman.Dialog.CoreProject = { { if (action.type == 'setdata') { //_this.dialog.el.mask("Loading"); - //this.load({ method: 'GET', params: { '_id' : _this.data.id }}); + if (_this.data.id) { + this.load({ method: 'GET', params: { '_id' : _this.data.id }}); + } return; } if (action.type == 'load') { - + return; } if (action.type =='submit') { -- 2.39.2