Ext.ux.AccordionList
Ext.ux.AccordionList copied to clipboard
List does not scroll on Windows Phone
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.
Same problem for me !
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? :(
@shinobukawano does it help you if we're creating a VisualStudio project or do you have no possibility to test on a Windows system?