|
@ -2,30 +2,48 @@ |
|
|
initComponent: function(){ |
|
|
initComponent: function(){ |
|
|
// calling superclass's initComponent
|
|
|
// calling superclass's initComponent
|
|
|
this.callParent(); |
|
|
this.callParent(); |
|
|
var stats = this.getComponent('user_stats'); |
|
|
var stats = this.queryById('user_stats'); |
|
|
if (stats != undefined){ |
|
|
if (stats != undefined){ |
|
|
stats.updateStats(); |
|
|
stats.updateStats(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if( this.queryById('user_profiles')){ |
|
|
if( this.queryById('user_profiles')){ |
|
|
this.queryById('user_profiles').disable(); |
|
|
this.queryById('user_profiles').disable(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
if( this.queryById('user_logs')){ |
|
|
if( this.queryById('user_logs')){ |
|
|
this.queryById('user_logs').disable(); |
|
|
this.queryById('user_logs').disable(); |
|
|
|
|
|
//update user stats
|
|
|
|
|
|
var store = this.queryById('user_logs').getStore() |
|
|
|
|
|
store.on('load', function (store, records, operation, success){ |
|
|
|
|
|
if( this.queryById('user_stats') ){ |
|
|
|
|
|
this.queryById('user_stats').updateStats(); |
|
|
|
|
|
} |
|
|
|
|
|
}, this); |
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
if( this.queryById('user_stats') ){ |
|
|
|
|
|
this.queryById('user_stats').disable(); |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
// setting the 'rowclick' event
|
|
|
// setting the 'rowclick' event
|
|
|
var view = this.getComponent('users').getView(); |
|
|
var view = this.getComponent('users').getView(); |
|
|
view.on('itemclick', function(view, record){ |
|
|
view.on('itemclick', function(view, record){ |
|
|
// The beauty of using Ext.Direct: calling 3 endpoints in a row, which results in a single call to the server!
|
|
|
// The beauty of using Ext.Direct: calling 3 endpoints in a row, which results in a single call to the server!
|
|
|
this.selectUser({user_id: record.get('id')}); |
|
|
this.selectUser({user_id: record.get('id')}); |
|
|
this.getComponent('user_profiles').getStore().load(); |
|
|
|
|
|
this.getComponent('user_logs').getStore().load(); |
|
|
|
|
|
|
|
|
|
|
|
if( this.queryById('user_profiles')){ |
|
|
if( this.queryById('user_profiles')){ |
|
|
|
|
|
this.queryById('user_profiles').getStore().load(); |
|
|
this.queryById('user_profiles').enable(); |
|
|
this.queryById('user_profiles').enable(); |
|
|
} |
|
|
} |
|
|
if( this.queryById('user_logs')){ |
|
|
if( this.queryById('user_logs')){ |
|
|
|
|
|
this.queryById('user_logs').getStore().load(); |
|
|
this.queryById('user_logs').enable(); |
|
|
this.queryById('user_logs').enable(); |
|
|
} |
|
|
} |
|
|
|
|
|
if( this.queryById('user_stats') ){ |
|
|
|
|
|
this.queryById('user_stats').updateStats(); |
|
|
|
|
|
this.queryById('user_stats').enable(); |
|
|
|
|
|
} |
|
|
}, this); |
|
|
}, this); |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|