Togglefield + Texfield + Toolbar = weird scrolling.
Hello there,
I'm facing a weird behaviour while playing around with textfields, togglefields and toolbars :
If all 3 exist on a same view, when the user tries to fill out the text field, the page scrolls up and down continuously while the virtual keyboard is visible ! :-?
Sample code :
Code:
myView = Ext.extend(Ext.Panel, {
dockedItems : [ {
dock : 'top',
xtype : 'toolbar',
title : 'my toolbar'
} ],
items : [ {
xtype : 'togglefield',
label : 'togglefield',
value : 1
}, {
xtype : 'textfield',
label : 'textfield'
} ]
});
The problem seems to appear :
- only when there's both a togglefield and a toolbar around.
- on an actual device only (not on Chrome)
Sencha Touch version : 1.1.0
Used device : HTC Desire, Android 2.3.3
Any idea ? It seems like the app is wondering "where the hell is my focus ?"
Thank you