-
28 Jan 2012 7:12 PM #1
NavigationView navbar bug
NavigationView navbar bug
Sencha Touch 2.0PR4
In Navigation view you see this
Code:* There will *always* be a NavigationBar, even if you pass false. If you do pass false, it will just * be hidden. This means you can show/hide the NavigationBars at any time. * @accessor */ navigationBar: { docked: 'top' },when clearly it should beCode:// @private applyNavigationBar: function(config) { if (!config) { config = { hidden: false, docked: 'top' }; }
Code:// @private applyNavigationBar: function(config) { if (!config) { config = { hidden: true, docked: 'top' }; }
-
29 Jan 2012 9:50 AM #2Sencha - Sencha Touch Dev Team
- Join Date
- Mar 2007
- Location
- Redwood City, California
- Posts
- 3,652
- Vote Rating
- 14
Thank you for the report.
-
29 Jan 2012 12:22 PM #3
Good spot. Thanks for this.
Sencha Inc.
Robert Dougan - @rdougan
Sencha Touch 2 and Ext JS 4 Core Team Member, SASS/Theming Wizard.
Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-1666
in
2.0.


Reply With Quote