DataObjects/Core_domain.php
[Pman.Core] / Pman.Tab.PersonList.js
index 9444ed2..6e6b8c8 100644 (file)
@@ -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(){
-                            _this.grid.footer.onClick('first');
-                        }).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});
                         
                     }
                     
@@ -578,7 +579,13 @@ Pman.Tab.PersonList.prototype = {
          //   id : (this.id + '-name').toLowerCase(),
             header : "Name",
             dataIndex : 'name',
-            sortable : true
+            sortable : true,
+            renderer : function(v,p,r) { 
+                if(r.data.active != 1){
+                    return String.format('<div style="text-decoration:line-through">{0}</div>', v); 
+                }
+                return String.format('{0}', v); 
+            }
           //  width : 150  
         }, cfg);
     },