-
14 Nov 2011 5:49 PM #11
-
15 Nov 2011 9:22 AM #12Sencha - Sencha Touch Dev Team
- Join Date
- Mar 2007
- Location
- Redwood City, California
- Posts
- 3,652
- Vote Rating
- 14
This override should fix the error and the tabs should animate in the proper direction as well:
This will be part of the next release.Code:Ext.override(Ext.tab.Panel, { doSetActiveItem: function(newActiveItem, oldActiveItem) { if (newActiveItem) { var items = this.getInnerItems(), oldIndex = items.indexOf(oldActiveItem), newIndex = items.indexOf(newActiveItem), reverse = oldIndex > newIndex; this.getLayout().getAnimation().setReverse(reverse); this.callParent(arguments); if (newIndex != -1) { this.getTabBar().setActiveTab(newIndex); } } } });
-
7 Dec 2011 7:18 AM #13
Got the same error with "Ext.NestedList" using PR2
Success! Looks like we've fixed this one. According to our records the fix was applied for
TOUCH-1032
in
2.0.



Reply With Quote