Pman.Tab.PersonList.js
[Pman.Core] / Pman.Tab.PersonList.js
index 7ec802d..19e57c4 100644 (file)
@@ -266,7 +266,10 @@ 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)();
                         
                         
                     }
@@ -276,9 +279,9 @@ Pman.Tab.PersonList.prototype = {
                  
         });
         this.panel  = this.layout.add('center',  new Roo.GridPanel(this.grid , {
-                //fitToframe: true,
-                //fitContainer: true,
-                background : false,
+                fitToframe: true,
+                fitContainer: true,
+                //background : false,
                 id: this.id, 
                 title: this.title || "Staff", 
                 controller : this 
@@ -575,7 +578,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);
     },