我在我的应用程序视图中有一个方法,我在那里写了一个方法,该方法工作正常,但我需要从控制器调用方法这里是我的代码......
listeners:{
itemmousedown : function(obj) {
alert(obj.storeItem.data['Name']+ ' &' + obj.storeItem.data['Data']);
}
}//this is the method in the view &
itemmouseup: function(item) {
}// this is controller section, from where i have to call this method
请任何人帮忙..