-
6 Mar 2012 4:27 AM #1
[RC2] TabPanel is hidding tabs
[RC2] TabPanel is hidding tabs
REQUIRED INFORMATION
Ext version tested:
- Sencha Touch RC 2
Browser versions tested against:
- Chrome
- Safari 5.1.3
DOCTYPE tested against:
- html 5
Description:
- Using TabPanel results in hidden content
Steps to reproduce the problem:
- use TabPanel, add some tabs
The result that was expected:
- visible content on tab switch
The result that occurs instead:
- only tab bar is visible, content of panel has style : element.style {
display: none !important;
}
Test Case:
Code:example code attached, add touch directory
Operating System:
- Mac OS 10.7
-
6 Mar 2012 5:09 AM #2
The issue seems to be in wrapping of items in the tabbed panel :
I've been looking into the examples and found that you need to set the xtype of the item and not wrap it:Code:items: [ { title: 'Favorites', iconCls: 'favorites', layout: 'fit', items: [ { xtype: 'favoritesPanel' } ] }, ... ]
Code:items: [ { xtype: 'favoritesPanel' title: 'Favorites', iconCls: 'favorites', layout: 'fit' }, ... ]
-
6 Mar 2012 11:54 AM #3Sencha - Sencha Touch Dev Team
- Join Date
- Mar 2007
- Location
- Redwood City, California
- Posts
- 3,653
- Vote Rating
- 14
I'll check into your example, thanks for the report.
-
27 Apr 2012 9:25 AM #4
I'm experiencing this issue in ST 2.0.1, same script with 2.0.0 runs ok tho.
Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-2380
in
2.1.


Reply With Quote