I\'m using Sencha Touch for a mobile app and am using the MVC functionality in it. I like Sencha quite a bit but I\'m having a little trouble when it comes to passing data
A better solution might be restructure your MVC to eliminate the need to pass records around different views. For example, making different view component share the same store, whose reference is made accessible from anywhere needed.
Usually I'd put the reference of stores used across different views in locations such as App.controllers.data
nor directly under App
(which is really just part of controller anyway).