You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by "Justin Mclean (JIRA)" <ji...@apache.org> on 2013/04/17 04:20:13 UTC

[jira] [Updated] (FLEX-17477) fadeIn and grow Effects are not working on List with any container (VBox,HBox,canvas) in it's custom itemRenderer.

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

Justin Mclean updated FLEX-17477:
---------------------------------

    Labels: easytest  (was: )
    
> fadeIn and grow Effects are not working on List with any container (VBox,HBox,canvas) in it's custom itemRenderer.
> ------------------------------------------------------------------------------------------------------------------
>
>                 Key: FLEX-17477
>                 URL: https://issues.apache.org/jira/browse/FLEX-17477
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: Effects, mx: List
>    Affects Versions: Adobe Flex SDK 3.2 (Release)
>         Environment: Affected OS(s): All OS Platforms
> Affected OS(s): All OS Platforms
> Browser: Firefox 2.x
> Language Found: English
>            Reporter: Adobe JIRA
>              Labels: easytest
>
>       Steps to reproduce:
> 1.compile this code:
> <?xml version="1.0" encoding="utf-8"?>
> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
> <mx:Script>
> <![CDATA[
> 	import mx.collections.ArrayCollection;
> 	[Bindable]
> 	public var listArray:ArrayCollection = new ArrayCollection();
> ]]
>       >
> </mx:Script>
> 	<mx:DefaultListEffect id="listEffect" color="#0000FF"/>
> 	<mx:VBox>
> 	
> 		<mx:List variableRowHeight="true" dataProvider="{listArray}" itemsChangeEffect="{listEffect}">
> 			<mx:itemRenderer>
> 				<mx:Component>
> 					<mx:Canvas>
> 						<mx:Label text="{data.label}"/>
> 					</mx:Canvas>
> 				</mx:Component>
> 			</mx:itemRenderer>
> 		</mx:List>
> 		
> 		<mx:Button label="add Item" click="listArray.addItem({label: 'List Item'})"/>
> 		<mx:Button label="remove Item" click="listArray.removeItemAt(0)"/>
> 	</mx:VBox>
> </mx:Application>
>  
>  Actual Results:
> when Adding items no fadein nor grow is played.
> List item are popping in after the default effect duration.
> note: effect is playing fine on the removeItem.
>  
>  Expected Results:
> watch the effect that should normally occur by either:
> 1. removing the canvas from the component .
> 2. getting rid of the itemRenderer.
>  
>  Workaround (if any):
> none.
>     

--
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