I have an application associated with a sencha touch phone (v1.1.1) that contains several stores and a list.
The problem occurs after logging in as "User1", and then log out and log in as "User2". The list will not be updated with the new account information received by the storage proxy.
I'm currently trying to call .refresh() on the List itself, which, according to the docs, will also cause the repository to update its data (although, I still manually do this before)
var sL = Ext.getCmp('AccountsList'); sL.refresh(); sL.scroller.scrollTo({x:0,y:0});
We also tried .sync() to store without any results.
Ext.getStore('AccountsTransfersTo').sync(); Ext.getStore('AccountsTransfersFrom').sync(); Ext.getStore('AccountsStore').sync();
Any idea what the problem is, or does anyone come across something like that?
ahren source share