i have a controller in my application in extjs. i have a method in that controller ,that is doing some action .Now i have to call another method from that method.But when i am doing that the previous method is not working please give me the way to call it appropriately .Here is my code....
afterChartLayout: function(){
if(this.initializedEvents==true) return;
this.initializedEvents=true;
Ext.getCmp('barColumnChart').series.items[0].on('itemmousedown',function(obj){
alert(obj.storeItem.data['source']+ ' &' + obj.storeItem.data['count']);
});
somebody please help...