sync
[Pman.Admin] / Pman.Tab.AdminEnum.js
index 26b65b0..314c952 100644 (file)
@@ -647,15 +647,16 @@ Pman.Tab.AdminEnum = new Roo.XComponent({
           listeners : {
            click : function()
             {
-                var s = _this.grid.selModel.selection.record.id;
-                
-                if (s.length * 1 < 1)  {
+            
+                var s = _this.grid.getSelectionModel().getSelectedCell();
+            
+                if (!s.length)  {
                     Roo.MessageBox.alert("Error", "Select a Row");
                     return;
                 }
                 
                 var d = _this.grid.ds.getAt(s[0]);
-            
+                console.log(Pman.Dialog);
                 Pman.Dialog.AdminEnumMerge.show(d.data, function() {
                     _this.grid.footer.onClick('refresh');
                 });