I am new in Sencha Touch, so I don’t know it’s full structure. So the question is a little stupid, i guess 🙂
I have a view it is a nestedlist object. I have created a toolar object inside my nestedlist. Now I want to manipulate this toolbar from another view’s callback. How can I access my toolbar object located in nestedlist view from event callback from another view object?
With that little information on your structure (are you using the MVC pattern? No example code given) I can only say that you can definitely achieve this with Ext.ComponentQuery
Lets say you added a custom property to your toolbar named
ident='myToolbar'then you can access this toolbar (precisely said any toolbar with that custom property) by callingThe result will be always a array but in this example we accept only one result, that is why I added
[0]For further information refer to the API. Ext.ComponentQuery is mighty if you know how to use it.