You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by "Alex Harui (JIRA)" <ji...@apache.org> on 2013/02/17 03:05:12 UTC

[jira] [Resolved] (FLEX-33339) List for mobile ios and android no longer scrolls

     [ https://issues.apache.org/jira/browse/FLEX-33339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Alex Harui resolved FLEX-33339.
-------------------------------

    Resolution: Cannot Reproduce

Cannot reproduce in AIR simulator for IOS with this simple test.  Please provide complete, but simple test case.


<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009" 
        xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
    </fx:Declarations>
    <fx:Script>
        <![CDATA[
            import mx.collections.ArrayList;
            private var arr:Array = [
                "apple",
                "banana",
                "carrot",
                "date",
                "elderberry",
                "fig",
                "guava",
                "ham",
                "ice cream",
                "jelly",
                "kelp",
                "lemon",
                "mango",
                "nectar",
                "orange",
                "plum",
                "quince",
                "raspberry",
                "strawberry",
                "thimbleberry",
                "umm",
                "vino",
                "water",
                "xxx",
                "yum",
                "zum"
            ];
        ]]>
    </fx:Script>
    <s:List id="list" creationComplete="list.dataProvider = new ArrayList(arr)"
            width="100%" height="100%" />
</s:View>

                
> List for mobile ios and android no longer scrolls
> -------------------------------------------------
>
>                 Key: FLEX-33339
>                 URL: https://issues.apache.org/jira/browse/FLEX-33339
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: Mobile: List
>    Affects Versions: Apache Flex 4.8 (parity release)
>         Environment: All devices
>            Reporter: Leng Sheng Hong
>            Priority: Critical
>
> when using mxml as following:
> 	<s:VGroup width="100%" height="100%" includeIn="version">
> 		<s:Button id="btnFull" label="Without header"  click="btnFull_clickHandler(event)"/>
> 		<s:List id="versionList" width="100%" height="100%" fontSize="32" color="0x000000" labelField="label" change="versionList_changeHandler(event)">			
> 		</s:List>
> 	</s:VGroup>
> the List shows all the item renderer on screen, on touch shows a scrollbar, but it doesn't react to touch scrolling. It will just dispatch change event on the 1st item touch. No more scrolling on mobile list.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira