extjs のアプリケーションにコントローラーがあります。私はそのコントローラーにメソッドを持っています。それは何らかのアクションを実行しています。今、そのメソッドから別のメソッドを呼び出さなければなりません。コード....
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']);
});
誰か助けてください...