hi all, i can access to my function 'showme'
'this' corresponding at store,so i doesn't work, how catch this function, how call this controller function
thanks a lot for your helpCode:init: function () { this.control({ 'panelCenter': { render: function (panel) { this.getUsersStore().on('load', function () { this.showme});} } }) }, showme: function () { alert('i am in') }