Pman.Dialog.CoreEnumMerge.bjs
authorbenny <benny@roojs.com>
Wed, 12 Sep 2018 07:25:12 +0000 (15:25 +0800)
committerbenny <benny@roojs.com>
Wed, 12 Sep 2018 07:25:12 +0000 (15:25 +0800)
Pman.Dialog.CoreEnumMerge.js

Pman.Dialog.CoreEnumMerge.bjs
Pman.Dialog.CoreEnumMerge.js

index 715d5fe..69083ee 100644 (file)
@@ -42,7 +42,7 @@
       {
        "listeners" : {
         "actionfailed" : "function (_self, action)\n{\n \n    Pman.standardActionFailed(_self, action);\n}\n",
-        "actioncomplete" : "function (_self, action)\n{\n\n   if (action.type =='submit') {\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    if (action.type == 'setdata') {\n        \n         var title = _this.data.title  || _this.data.etype;\n        _this.dialog.setTitle(\"Delete selected \" + title + \" and merge data with\");\n        _this.form.findField('_ids').setValue(_this.data._ids);\n        \n        if(!_this.data._ids){\n            this.load({ method: 'GET', params: { '_id' : _this.data.id }});  \n            return;\n        }\n        _this.form.findField('_names').setValue(_this.data._names);\n        return;\n    }\n    \n}\n",
+        "actioncomplete" : "function (_self, action)\n{\n\n   if (action.type =='submit') {\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    if (action.type == 'setdata') {\n        \n         var title = _this.data.title  || _this.data.etype;\n        _this.dialog.setTitle(\"Delete selected \" + title + \" and merge data with\");\n        \n        \n        if(!_this.data._ids){\n            this.load({ method: 'GET', params: { '_id' : _this.data.id }});  \n            _this.form.findField('id').setValue(_this.data.id);\n            return;\n        }\n        _this.form.findField('_names').setValue(_this.data._names);\n        _this.form.findField('_ids').setValue(_this.data._ids);\n        return;\n    }\n    \n}\n",
         "rendered" : "function (form)\n{\n   _this.form = form;\n}"
        },
        "$ url" : "baseURL + '/Roo/Core_enum.php'",
index 03ca598..b79e2fb 100644 (file)
@@ -129,13 +129,15 @@ Pman.Dialog.CoreEnumMerge = {
                   
                    var title = _this.data.title  || _this.data.etype;
                   _this.dialog.setTitle("Delete selected " + title + " and merge data with");
-                  _this.form.findField('_ids').setValue(_this.data._ids);
+                  
                   
                   if(!_this.data._ids){
                       this.load({ method: 'GET', params: { '_id' : _this.data.id }});  
+                      _this.form.findField('id').setValue(_this.data.id);
                       return;
                   }
                   _this.form.findField('_names').setValue(_this.data._names);
+                  _this.form.findField('_ids').setValue(_this.data._ids);
                   return;
               }