-
13 Mar 2012 5:33 PM #1
Answered: Pop the navigationView to root on tab changed
Answered: Pop the navigationView to root on tab changed
I have 5 tabs(in my barpanel), and inside some of this tabs I have a navigation view.I would like that when I selected a tab, automatically the navigation view is on the root windows.Someone has a clue ?
-
Best Answer Posted by mitchellsimoens
On activate event you can use reset() on the navigation view.
-
14 Mar 2012 3:54 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,710
- Vote Rating
- 436
- Answers
- 3113
On activate event you can use reset() on the navigation view.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
14 Mar 2012 11:48 PM #3
Yes it works well
Thanks so much, I was looking way to far haha
here the working code
Code:listeners:{ activate: { fn: function() { this.reset(); }, element: 'element' } }


Reply With Quote