Once again I need the help from this awesome community.
My problem appears when I create a Ext.Picker in my Controller
here is a simple version of my Picker:
var picker = Ext.create('Ext.Picker', {
slots: [
{
name : 'limit_speed',
title: 'Speed',
data : [
{text: '50 KB/s', value: 50},
{text: '100 KB/s', value: 100},
{text: '200 KB/s', value: 200},
{text: '300 KB/s', value: 300}
]
}
]
});
Ext.Viewport.add(picker);
picker.show();
When the Picker panel pops up I can scroll my entire screen away.
I tried to set the scrollable: false
attribute where ever i could, but still I can scroll over the borders.
Some further strange facts: the distance how far I can scroll down varies and I cannot figure out on what this depends on. Sometimes I can scroll until I have the whole screen black but sometimes I cannot scroll at all. Furthermore this bug won't appear on each device. For instance I have these problems on my HTC One S with Android 4.1.1 but a HTC One X with Android 4.1.1 isn't affected by this bug.
If someone is willing to see the entire code:
View TimerPanel holding everything together: http://pastebin.com/2FiPgZqW
View TimerEdit: http://pastebin.com/yv08tsYk
Controller telling when to launch the Picker: http://pastebin.com/LkQWhaAF
Can anybody tell me if this is a known bug or if I'm doing something wrong.