-
20 Sep 2012 10:29 AM #1
Unanswered: IOS 6 - Screen lock showing keyboard
Unanswered: IOS 6 - Screen lock showing keyboard
Hi! I just update my iphone for ios 6 and now I notice that when the keyboard shows up my app totally freeze!
I did not change anything, just update to ios 6. My app is running with sencha touch 1.
Does someone have the same issue?
Thanks a lot!
Ari
-
22 Sep 2012 5:06 AM #2Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
- Answers
- 3101
I have not see this since I have updated my phone and ipads
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.
-
28 Oct 2012 1:27 PM #3
Me too
Me too
It's not that the app "locks up", there's some kind of scroll glitch related to the keyboard.
1. Onto any fullscreen container, render a bunch of text-fields.
2. Tab through the fields typing "asdf". once you hit the 5th or 6th field, the layout goes haywire (for me, it manifests as a blank white screen. keep typing and tabbing the fields the app will layout again, glitch again.Code:var items = []; for (var n=0,len=50;n<len;n++) { items.push({ xtype: 'component', html: '<input type="text" />' // <-- render raw html input fields }); } new Ext.Panel({ fullscreen: true, items: items });
NOTE: I rendered raw html input els to show it has nothing to do with TextField blur, focus, autoCorrect, etc./**
* @author Chris Scott
* @business www.transistorsoft.com
* @rate $120USD / hr; training $500USD / day / developer (5 dev min)
*
* @SenchaDevs http://senchadevs.com/developers/transistor-software
* @twitter http://twitter.com/#!/christocracy
* @github https://github.com/christocracy
*/
-
29 Oct 2012 4:46 AM #4Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
- Answers
- 3101
Oh so the issue is when you use the next/previous buttons in the soft keyboard? This is a bug then http://www.sencha.com/forum/showthread.php?233093
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