i need help with something I need a TileList that have in its first position/item a button and in all other items a image for each. Well, after having problems with Plastic theme and s:List (a problem with the scroller s List) i gave up and started working with TileList. I am using a custom item Renderer for the TileList. It is pretty simple but i think I'm doing something wrong.

The dataProvider for the TileList in an ArrayCollection composed by a String class first item, and all others are a custom class that extends Image Class. like: arr=["bt",Image,Image.....];

I don't no why but my TileList display the correct button in its first item, but after that it displays more 2 item images, then a fourth item with the right image but with a button, and it is a pattern....after 3 right items the next comes with a button....

my custom ItemRenderer:

<?xml version="1.0" encoding="utf-8"?>
<mx:VBox xmlns:mx="http://www.adobe.com/2006/mxml"

     horizontalAlign="center"
     verticalAlign="middle"
     creationComplete="init()">
<mx:Script>
    <![CDATA[
        import mx.controls.Button;
    protected function init():void
    {
        if(this.data == "bt")
        {
            var bt:Button = new Button();
            bt.id = "btEnviar";
            bt.width=84;
            bt.height=28;
            bt.label = "Enviar Fotos"; 
            addElement(bt);

        }

    }
    ]]>
</mx:Script>
<mx:Image id="img" source = "{data}"/>

i really appreciate if someone could help...i didn't found nothing about it on the internet.

thanks!

link|improve this question
have you tried to override commitProperties() and add the code there instead of using the initialize event ? – Adrian Pirvulescu Feb 9 at 15:06
nothing =/ gets worst really, now in the first item appears 2 buttons – Crofuncio Feb 9 at 18:18
I really think you are doing something else wrong. First of all please be 100% sure you understand the rendering mechanism. Sounds boring but you will hit on item renderer issues all times. – Adrian Pirvulescu Feb 10 at 10:36
feedback

1 Answer

up vote 0 down vote accepted

Seems like a virtual layout issue. This means renderer are reused. If they are not reinitialised (ex : remove your bt element) things like this can happen. Also, I suggest you override public function data(value:Object):void and put your code in there. You can also disable virtual layout if you really want to (useVirtualLayout = false on your DataGroup/List).

I don't have much time to explain it at the moment, but I suggest you look into the itemRendererFunction property of a DataGroup. This function returns a ClassFactory defining the type of item renderer to use depending on the data.

Here's a link on this from Adobe references : Working with item renderers. See the "Using an item renderer function with a Spark container" section.

link|improve this answer
As Exort has said, the item renderers will be re-used, so it is important to account for what happens if this.data != "bt". Ideally add an else statement to check if a button exists and the remove from the display. The other alternative is to add states to your renderer and change the state explicitly when setting the data. i.e if(this.data == "bt"){this.currentState = "button"} else {this.currentState = "image" } – James Feb 10 at 9:15
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.