-
11 Nov 2012 10:38 PM #1
Unanswered: Swipe panel like Facebook Native App
Unanswered: Swipe panel like Facebook Native App
Is that Possible... to swipe the panel like facebook iphone native app ?
Well I tried but... Not get any success...
Please help....
-
13 Nov 2012 1:11 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,107
- Vote Rating
- 453
- Answers
- 3157
Sure it's possible. You have a swipe event on the element.
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.
-
14 Nov 2012 9:58 PM #3
I have used this swipe function... its working but not like facebook app.... I need swipe event like facebook.....
Code:onView_UserScreenInitialize: function(component, options) { component.element.on({ swipe: { fn:function(event, node, options, eOpts){ if(event.direction == 'right'){ console.log(event.direction); } if(event.direction == 'left'){ console.log(event.direction + "0"); } }, scope:component } }); }
-
17 Nov 2012 4:03 AM #4


Reply With Quote