Pman.Tab.PersonList.js
[Pman.Core] / Pman.Tab.PersonList.js
index 1a82d18..b3b3603 100644 (file)
@@ -188,10 +188,10 @@ Pman.Tab.PersonList.prototype = {
                 ds:   new Roo.data.Store({
                     // load using HTTP
                     proxy: new Roo.data.HttpProxy({
-                        url: baseURL + '/Roo/Person.html',
+                        url: baseURL + '/Roo/core_person',
                         method: 'GET'
                     }),
-                    reader: Pman.Readers.Person,
+                    reader: new Roo.data.JsonReader({}, []),
                     remoteSort: true,
                     listeners : {
                         
@@ -211,7 +211,7 @@ Pman.Tab.PersonList.prototype = {
                             // only used to change active status.
                             
                             new Pman.Request({
-                                url : baseURL + '/Roo/Person.php',
+                                url : baseURL + '/Roo/core_person',
                                 method :'POST',
                                 params : {
                                     id : record.data.id,
@@ -266,11 +266,12 @@ Pman.Tab.PersonList.prototype = {
                         
                         rec.set('active', rec.data.active ? 0 : 1);
                         rec.commit();
-                        Roo.select('.x-grid-row-selected').item(1).addClass('fadeout');
-                        (function(){
-                            refreshPager();
-                        }).defer(5000)();
-                        
+
+                        var el = Roo.select('.x-grid-row-selected').item(3);
+                        el.addClass('x-grid-row-fadeout');
+                        el.on('transitionend',function(){
+                            _this.grid.ds.remove(rec);
+                        },this,{single:true});
                         
                     }
                     
@@ -423,7 +424,7 @@ Pman.Tab.PersonList.prototype = {
 
                     
                     Roo.Ajax.request({
-                        url: baseURL + '/Roo/Person.html',
+                        url: baseURL + '/Roo/core_person',
                         method: 'GET',
                         params: {
                             _toggleActive : r.join(',')
@@ -454,7 +455,43 @@ Pman.Tab.PersonList.prototype = {
                 hidden : !Pman.hasPerm(_this.permName, 'D'),    
                 icon: rootURL + '/Pman/templates/images/trash.gif',
                 handler : function(){
-                    Pman.genericDelete(_this, 'Person'); 
+                    //Pman.genericDelete(_this, 'Person'); 
+                    function()
+                    {
+                        var ids = [];
+                        _this.grid.dataSource.each(function(rr) {
+                            if (rr.selected) {
+                                ids.push(rr.data.id);
+                            }
+                        });   
+                        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');
+                                    }
+                                });
+                            }
+                        );
+
+
+                    }
+
                 }
             } ,