sync
[Pman.Admin] / Pman.Dialog.AdminEnumMerge.js
index f1986e2..0e6f68e 100644 (file)
@@ -8,9 +8,13 @@ Pman.Dialog.AdminEnumMerge = {
 
  _strings : {
   '0b3e4317865feb6f0224397600b7cafc' :"Merge Core Enum",
+  '03e956f1dca2b4d525df03cb1899cb6f' :"Merge with",
   'ea4788705e6873b424c65e91c2846b19' :"Cancel",
   'e0aa021e21dddbd6d8cecec71e9cf564' :"OK"
  },
+ _named_strings : {
+  'merge_display_name_fieldLabel' : '03e956f1dca2b4d525df03cb1899cb6f' /* Merge with */ 
+ },
 
  dialog : false,
  callback:  false,
@@ -36,67 +40,86 @@ Pman.Dialog.AdminEnumMerge = {
  {
    var _this = this;
    this.dialog = Roo.factory({
-    center : {
-     '|xns' : 'Roo',
-     titlebar : false,
-     xns : Roo,
-     xtype : 'LayoutRegion'
-    },
-    '|xns' : 'Roo',
+    xtype : 'LayoutDialog',
     background : true,
     closable : false,
     collapsible : false,
     height : 150,
     modal : true,
     resizable : false,
-    title : _this._strings['0b3e4317865feb6f0224397600b7cafc'],
+    title : _this._strings['0b3e4317865feb6f0224397600b7cafc'] /* Merge Core Enum */,
     width : 400,
+    listeners : {
+     show : function (_self)
+      {
+          _this.merge.focus();
+      }
+    },
     xns : Roo,
-    xtype : 'LayoutDialog',
+    '|xns' : 'Roo',
+    center : {
+     xtype : 'LayoutRegion',
+     titlebar : false,
+     xns : Roo,
+     '|xns' : 'Roo'
+    },
     buttons : [
-      {
-       '|xns' : 'Roo',
-       text : _this._strings['ea4788705e6873b424c65e91c2846b19'],
-       xns : Roo,
-       xtype : 'Button',
-       listeners : {
-        click : function() {
-             _this.form.reset();
-             _this.dialog.hide();
-         }
-       }
+     {
+      xtype : 'Button',
+      text : _this._strings['ea4788705e6873b424c65e91c2846b19'] /* Cancel */,
+      listeners : {
+       click : function() {
+            _this.form.reset();
+            _this.dialog.hide();
+        }
       },
-{
-       '|xns' : 'Roo',
-       text : _this._strings['e0aa021e21dddbd6d8cecec71e9cf564'],
-       xns : Roo,
-       xtype : 'Button',
-       listeners : {
-        click : function() {
-         
-             
-             _this.form.doAction('submit');
-             
-         }
-       }
-      }
+      xns : Roo,
+      '|xns' : 'Roo'
+     },
+     {
+      xtype : 'Button',
+      text : _this._strings['e0aa021e21dddbd6d8cecec71e9cf564'] /* OK */,
+      listeners : {
+       click : function() 
+        {
+            if(typeof(_this.data._confirm) != 'undefined' && _this.data._confirm * 1 == 1){
+                Roo.MessageBox.confirm(
+                    "Confirm", 
+                    "Are you sure '" + _this.data.display_name + "' Merge with '" + _this.form.findField('_merge_id').getRawValue() + "'", 
+                    function(res) {
+                        if(res != 'yes') {
+                            return;
+                        }
+                        
+                        _this.form.doAction('submit');
+                        return;
+                    }
+                );
+                
+                return;
+            }
+            _this.form.doAction('submit');
+            
+        }
+      },
+      xns : Roo,
+      '|xns' : 'Roo'
+     }
     ],
-    items : [
+    items  : [
      {
-      '|xns' : 'Roo',
+      xtype : 'ContentPanel',
       background : true,
       fitToFrame : true,
       region : 'center',
       xns : Roo,
-      xtype : 'ContentPanel',
-      items : [
+      '|xns' : 'Roo',
+      items  : [
        {
-        '|xns' : 'Roo.form',
+        xtype : 'Form',
         method : 'POST',
         style : 'margin: 5px',
         url : baseURL + '/Roo/core_enum.php',
-        xns : Roo.form,
-        xtype : 'Form',
         listeners : {
          actioncomplete : function (_self, action)
           {
@@ -123,18 +146,61 @@ Pman.Dialog.AdminEnumMerge = {
              _this.form = form;
           }
         },
-        items : [
+        xns : Roo.form,
+        '|xns' : 'Roo.form',
+        items  : [
          {
+          xtype : 'ComboBox',
+          allowBlank : false,
+          alwaysQuery : true,
+          displayField : 'display_name',
+          editable : true,
+          fieldLabel : _this._strings['03e956f1dca2b4d525df03cb1899cb6f'] /* Merge with */,
+          forceSelection : true,
+          hiddenName : '_merge_id',
+          listWidth : 250,
+          minChars : 2,
+          name : 'merge_display_name',
+          pageSize : 50,
+          queryParam : 'query[search]',
+          selectOnFocus : true,
+          tpl : '<div class=\"x-grid-cell-text x-btn button\"><b>{display_name}</b> </div>',
+          triggerAction : 'all',
+          valueField : 'id',
+          width : 250,
+          listeners : {
+           render : function (_self)
+            {
+                _this.merge = this;
+            }
+          },
+          xns : Roo.form,
+          '|xns' : 'Roo.form',
           store : {
+           xtype : 'Store',
+           remoteSort : true,
+           sortInfo : { direction : 'ASC', field: 'display_name' },
+           listeners : {
+            beforeload : function (_self, o){
+                 o.params = o.params || {};
+                 
+                 o.params.active = 1;
+                 o.params.etype = _this.data.etype;
+                 o.params['!id'] = _this.data.id;
+                 
+             }
+           },
+           xns : Roo.data,
+           '|xns' : 'Roo.data',
            proxy : {
-            '|xns' : 'Roo.data',
+            xtype : 'HttpProxy',
             method : 'GET',
             url : baseURL + '/Roo/Core_enum.php',
             xns : Roo.data,
-            xtype : 'HttpProxy'
+            '|xns' : 'Roo.data'
            },
            reader : {
-            '|xns' : 'Roo.data',
+            xtype : 'JsonReader',
             fields : [
                 {
                     "name":"id",
@@ -149,71 +215,21 @@ Pman.Dialog.AdminEnumMerge = {
             root : 'data',
             totalProperty : 'total',
             xns : Roo.data,
-            xtype : 'JsonReader'
-           },
-           '|xns' : 'Roo.data',
-           remoteSort : true,
-           sortInfo : { direction : 'ASC', field: 'display_name' },
-           xns : Roo.data,
-           xtype : 'Store',
-           listeners : {
-            beforeload : function (_self, o){
-                 o.params = o.params || {};
-                 
-                 o.params.active = 1;
-                 o.params.etype = _this.data.etype;
-                 o.params['!id'] = _this.data.id;
-             }
-           },
-           items : [
-
-           ]
-
-          },
-          '|xns' : 'Roo.form',
-          alwaysQuery : true,
-          displayField : 'display_name',
-          editable : true,
-          fieldLabel : 'Merge with',
-          forceSelection : true,
-          hiddenName : '_merge_id',
-          listWidth : 250,
-          minChars : 2,
-          name : 'merge_display_name',
-          pageSize : 50,
-          queryParam : 'query[search]',
-          selectOnFocus : true,
-          tpl : '<div class=\"x-grid-cell-text x-btn button\"><b>{display_name}</b> </div>',
-          triggerAction : 'all',
-          valueField : 'id',
-          width : 250,
-          xns : Roo.form,
-          xtype : 'ComboBox',
-          items : [
-
-          ]
-
-         },
-         {
-          '|xns' : 'Roo.form',
-          name : 'etype',
-          xns : Roo.form,
-          xtype : 'Hidden'
+            '|xns' : 'Roo.data'
+           }
+          }
          },
          {
-          '|xns' : 'Roo.form',
+          xtype : 'Hidden',
           name : 'id',
           xns : Roo.form,
-          xtype : 'Hidden'
+          '|xns' : 'Roo.form'
          }
         ]
-
        }
       ]
-
      }
     ]
-
    });
  }
 };