I am working on sencha touch2.0 app and I want to send data from one screen to another. I know this question has already been asked here but I don\'t find it helpful so I am
Ext.dispatch()
is deprecated in Sencha Touch 2.0 because of the fact that you can always call any method of any controller at anytime you want through this, right in your views:
yourAppName.getApplication().getController.method(params)
Or even further, you can make it automatic through refs
and controls
in your controller.