shinobukawano / Ext.ux.AccordionList

Accordion List Component for Sencha Touch 2
http://kawanoshinobu.com/public/demo/accordionlist/
50 stars 28 forks source link

List does not scroll on Windows Phone #43

Open tsluijter opened 9 years ago

tsluijter commented 9 years ago

We've implemented the AccordionList on several views, but it doesn't scroll on a Windows Phone.

We've also tried your demo on a Windows Phone (emulator) and it has the same problem.

fryck commented 9 years ago

Same problem for me !

jase88 commented 8 years ago

Same here. Usually workarounds like this helps:

Ext.define('app.myView', {
    extend: 'Ext.ux.AccordionList',
    platformConfig: [{
        platform: ['windows'],
        scrollable: 'vertical',
        infinite: true,
        variableHeights: true
    }],
config: {}
});

But not in this case. Any workarounds so far? :(

jase88 commented 8 years ago

@shinobukawano does it help you if we're creating a VisualStudio project or do you have no possibility to test on a Windows system?