Sencha Touch:Windows Phone 不滚动到页面末尾

Sencha Touch: Windows Phone does not scroll to end of page

我有一个具有多个视图的 Sencha Touch 2.4 网站。 iOS 和 Android 上的所有视图均按预期滚动。但是在 Windows Phone 他们不滚动。 当我向下滚动时,我可以看到其他内容,但是当我停止滚动时,页面会滚动回顶部。 我还可以在滚动条上看到它不期望页面的其余部分。 在视图的代码下面。

Ext.define('App.view.Welcome', {
  extend : 'Ext.Container',
  xtype : 'Welcome',
  config : {
    styleHtmlContent : true,
    scrollable : true,
    layout : 'vbox',
    items : [ {
      docked : 'top',
      xtype : 'titlebar',
      title : 'Title',
      items : [ {
        xtype : 'button',
        iconCls : 'help',
        align : 'right'
      } ]
    }, {
      xtype : 'image',
      baseCls : 'logo'
    }, {
      xtype : 'label',
      html : 'Introduction text',
      width : '100%'
    }, {
      xtype : 'element1',
      width : '100%'
    }, {
      xtype : 'element2'
    } ]
  }
});

我已经尝试了几种方法。也改上了css。 但是还没有找到滚动问题的解决方案。

拜托,帮忙!

我在 GitHub 为 AccordionList 创建者创建了一个问题。 在 Windows Phone 上测试他的 AccordionList 演示后,它有同样的问题。