-
22 Dec 2011 12:18 PM #1
Answered: Turning scrolling on/off
Answered: Turning scrolling on/off
I've got a Ext.Panel, that I've set scrollable to true. Within that Panel, I've got another item the is a list, which also has scrollable set to true. In order for the scrolling in the list, not to also scroll the Ext.Panel, I've done the following. The process seems to turn the scrolling off, but not on for some reason. Is this a bug or something I'm doing incorrectly?
Code:listeners:{ itemtouchstart:function(){ try { Ext.getCmp(obj.set_panelid).setScrollable(false); }catch(e){ global.handleError(e); } }, itemtouchend:function(){ try { Ext.getCmp(obj.set_panelid).setScrollable(true); }catch(e){ global.handleError(e); } } }No longer a Newbie
-
Best Answer Posted by mitchellsimoens
This is an open bug reported internally.
-
22 Dec 2011 12:30 PM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 34,121
- Vote Rating
- 453
- Answers
- 3161
This is an open bug reported internally.
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.
-
23 Dec 2011 6:26 AM #3
Thanks for the quick response.
No longer a Newbie


Reply With Quote