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

Javascript Sencha Touch:Windows Phone不会滚动到页面末尾,javascript,extjs,scroll,windows-phone,touch,Javascript,Extjs,Scroll,Windows Phone,Touch,我有一个Sencha Touch 2.4网站,有多个视图。 所有视图在iOS和Android上按预期滚动。但在Windows Phone上,它们不会滚动。 当我向下滚动时,我可以看到其他内容,但当我停止滚动时,页面会滚动回顶部。 我还可以在滚动条上看到,它不希望看到页面的其余部分。 在视图的代码下面 Ext.define('App.view.Welcome', { extend : 'Ext.Container', xtype : 'Welcome', config : {

我有一个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上测试了他的手风琴列表演示后,出现了相同的问题。

看起来Ext.ux.AccordionList引入了这个问题。