-
10 Jan 2012 3:06 PM #1
Answered: setActiveItem direction
Answered: setActiveItem direction
I have a container with a card layout set up with the sliding animation. Every time I call setActiveItem() on it, it slides left. I'd like it to reverse the slide animation depending on which child I'm looking at. Otherwise the app feels a little disorienting.
How do I do that? This isn't working for me:
Code:Ext.getCmp('application').setActiveItem('mainCard', {direction: 'right'});
-
Best Answer Posted by mitchellsimoens
Try something like this (this is how Ext.tab.Panel does it):
Code:Ext.create('Ext.Container', { fullscreen : true, layout : { type : 'card', animation : { type : 'slide', direction : 'left' } }, items : [ { xtype : 'toolbar', docked : 'top', items : [ { text : 'Go to first', handler : function(btn) { var cnt = btn.up('container[fullscreen=true]'); cnt.getLayout().getAnimation().setReverse(false); cnt.setActiveItem(1); } }, { text : 'Go to second', handler : function(btn) { var cnt = btn.up('container[fullscreen=true]'); cnt.getLayout().getAnimation().setReverse(true); cnt.setActiveItem(0); } } ] }, { html : 'One' }, { html : 'Two' } ] });
-
11 Jan 2012 6:28 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,120
- Vote Rating
- 453
- Answers
- 3160
Try something like this (this is how Ext.tab.Panel does it):
Code:Ext.create('Ext.Container', { fullscreen : true, layout : { type : 'card', animation : { type : 'slide', direction : 'left' } }, items : [ { xtype : 'toolbar', docked : 'top', items : [ { text : 'Go to first', handler : function(btn) { var cnt = btn.up('container[fullscreen=true]'); cnt.getLayout().getAnimation().setReverse(false); cnt.setActiveItem(1); } }, { text : 'Go to second', handler : function(btn) { var cnt = btn.up('container[fullscreen=true]'); cnt.getLayout().getAnimation().setReverse(true); cnt.setActiveItem(0); } } ] }, { html : 'One' }, { html : 'Two' } ] });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.


Reply With Quote