RE: [flexcoders] ItemRender - Access Specific Item at Run-time

2009-08-12 Thread Tracy Spratt
access to the components that get created from the ArrayCollection. Is there a way? Short answer, no. Longer answer: itemRenderers are recycled and only the visible renderers even exist. When using item renderers, any state that depends on the item/row must be driven by the item. You need

Re: [flexcoders] ItemRender - Access Specific Item at Run-time

2009-08-12 Thread Baz
Thank you very much Tracy. What do you suggest to show/hide specific items based on an outside event? I am hesitant to *remove* the item from the ArrayCollection as I have to add it back at some point, maintaining the same complicated sort order. Currently my ArrayCollection contains a list of

RE: [flexcoders] ItemRender - Access Specific Item at Run-time

2009-08-12 Thread Jake Churchill
When does the state need to change? You probably need to be looking for some kind of an event (ListEvent most likely) Jake Churchill CF Webtools 11204 Davenport, Ste. 100 Omaha, NE 68154 http://www.cfwebtools.com http://www.cfwebtools.com 402-408-3733 x103 From: flexcoders@yahoogroups.com

RE: [flexcoders] ItemRender - Access Specific Item at Run-time

2009-08-12 Thread Tracy Spratt
To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ItemRender - Access Specific Item at Run-time Thank you very much Tracy. What do you suggest to show/hide specific items based on an outside event? I am hesitant to *remove* the item from the ArrayCollection as I have to add it back

Re: [flexcoders] ItemRender - Access Specific Item at Run-time

2009-08-12 Thread Baz
@yahoogroups.com *Subject:* Re: [flexcoders] ItemRender - Access Specific Item at Run-time Thank you very much Tracy. What do you suggest to show/hide specific items based on an outside event? I am hesitant to *remove* the item from the ArrayCollection as I have to add it back at some point

RE: [flexcoders] ItemRender - Access Specific Item at Run-time

2009-08-12 Thread Tracy Spratt
: Wednesday, August 12, 2009 5:10 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ItemRender - Access Specific Item at Run-time @Jake, I am implementing search-as-you-type, so there's a separate input box outside of the itemrender that needs to show/hide items that match or don't

Re: [flexcoders] ItemRender - Access Specific Item at Run-time

2009-08-12 Thread Baz
available -- *From:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Baz *Sent:* Wednesday, August 12, 2009 5:10 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] ItemRender - Access Specific Item at Run-time @Jake, I

RE: [flexcoders] ItemRender - Access Specific Item at Run-time

2009-08-12 Thread Tracy Spratt
, 2009 6:10 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ItemRender - Access Specific Item at Run-time Tracy, I always make visual changes in commitProperties and/or updateDisplayList - me and the component life cycle are good buddies :) In this case with the iterator, I'm