How to call controllers function from view while loading in sencha touch i have tried like below please help me out
Here is my listener in my view class
config: {
listeners:{
populateData:function(){
populateDashBoardData();
}
},
Here is my method in controller
populateDashBoardData: function () {
//some functionlaity
},