How to remove particular view from navigation stack in sencha touch?
I'm pushing views like this this.up('navView').push({xtype: 'myView'}) How can I remove particular view, which is in the middle of navigation stack? At least I should get rid of this warning [WARN][Ext.Component#constructor] Registering a component with a id (listxyz) which has already been used. Please ensure the existing component has been destroyed (Ext.Component#destroy(). Before pushing a view check weather the view already exists, and destroy it if its already there, so you wont get those warnings and can navigate easily. if(Ext.getCmp('myView')){ Ext.getCmp('myView').destroy(); } //Push