SimpleExcel.php
[Pman.Core] / Pman.Tab.PersonList.js
index bc3fa86..34173fa 100644 (file)
@@ -459,9 +459,9 @@ Pman.Tab.PersonList.prototype = {
                     
                     var rec = _this.grid.ds.getAt(_this.grid.selModel.last);
                     
-                    var ids = [];
-                    ids.push(rec.id);
-                    if (!ids.length) {
+                    var rec_id = rec.id;
+                    
+                    if (rec_id * 1 < 1) {
                         Roo.MessageBox.alert("Error", "Select row to delete");
                         return;
                     }
@@ -477,7 +477,7 @@ Pman.Tab.PersonList.prototype = {
                                 method : 'POST',
                                 url : baseURL + '/Roo/core_person',
                                 params : {
-                                    _delete  : ids.join(',')
+                                    _delete  : rec_id
                                 },
                                 success : function() {
                                     _this.paging.onClick('refresh');