Pman.Tab.PersonList.js
[Pman.Core] / Pman.Tab.PersonList.js
index 5a215cd..199af24 100644 (file)
@@ -456,18 +456,39 @@ Pman.Tab.PersonList.prototype = {
                 icon: rootURL + '/Pman/templates/images/trash.gif',
                 handler : function(){
                     //Pman.genericDelete(_this, 'Person'); 
-                    function()
-                    {
-                        var ids = [];
-                        _this.grid.dataSource.each(function(rr) {
-                            if (rr.selected) {
-                                ids.push(rr.data.id);
+                    
+                    var di = this.RowSelectionModel.getSelected;
+                    console.log(di);
+                    var rec = _this.grid.ds.getAt(rowIndex);
+            
+                    console.log(ids.length);
+                    /*if (!ids.length) {
+                        Roo.MessageBox.alert("Error", "Select rows by clicking on the Internal# column");
+                        return;
+                    }
+
+                    Roo.MessageBox.confirm(
+                        "Confirm", 
+                        "Confirm Deletion of selected rows (some rows can not be deleted if they are referenced elsewhere", 
+                        function(res) {
+                            if(res != 'yes') {
+                                return;
                             }
-                        });   
-                        
+                            new Pman.Request({
+                                method : 'POST',
+                                url : baseURL + '/Roo/core_person',
+                                params : {
+                                    _delete  : ids.join(',')
+                                },
+                                success : function() {
+                                    _this.grid.footer.onClick('refresh');
+                                }
+                            });
+                        }
+                    );*/
 
 
-                    }
+                    
 
                 }
             } ,