Hybrid View
-
18 Nov 2011 11:47 AM #1
Unanswered: activeItem not updating panel
Unanswered: activeItem not updating panel
Shouldn't this code go the second panel? It's not
Code:var viewport = Ext.create('Ext.Panel', { fullscreen: true, id:'mainViewport', layout: 'card', activeItem: 1, items: [{ xtype: 'LoginForm' },{ xtype: 'MainPunchApp' }], });
-
18 Nov 2011 12:11 PM #2
That should work. It is working for me:
Code:Ext.setup({ onReady: function() { Ext.Viewport.add({ layout: 'card', fullscreen: true, activeItem: 1, items: [ { html: 'First card' }, { html: 'Second card' } ] }); } });Sencha Inc.
Robert Dougan - @rdougan
Sencha Touch 2 and Ext JS 4 Core Team Member, SASS/Theming Wizard.
-
18 Nov 2011 12:18 PM #3
Here is my full code that does not work
Here is my full code that does not work
I changed xtype to html to see if that would help but that didn't
HTML Code:Ext.application({ name: 'testApp', controllers: ['test1, test2'], launch: function() { var viewport = Ext.create('Ext.Panel', { fullscreen: true, id:'mainViewport', layout: 'card', activeItem: 1, items: [ {html: 'LoginForm'}, {html: 'MainPunchApp'} ], }); } });
-
18 Nov 2011 12:23 PM #4
Did you try my exact code? What version are you running?
Sencha Inc.
Robert Dougan - @rdougan
Sencha Touch 2 and Ext JS 4 Core Team Member, SASS/Theming Wizard.
-
18 Nov 2011 12:27 PM #5
sencha-touch-2.0.0-pr1
sencha-touch-2.0.0-pr1
I am new to touch2 and the way I have it setup is how the examples show to setup an application. Not real sure how to implement your code into this application. Did you happen to try the code the way I have it setup?
Thanks for all your help!
-
18 Nov 2011 1:04 PM #6
Checkout PR2, and let me know if it works then. I think there was an issue with activeItem in PR1.
http://www.sencha.com/forum/announcement.php?f=90&a=17Sencha Inc.
Robert Dougan - @rdougan
Sencha Touch 2 and Ext JS 4 Core Team Member, SASS/Theming Wizard.


Reply With Quote