RE: [flexcoders] Re: Array vs ArrayCollection

2008-02-01 Thread Alex Harui
:[EMAIL PROTECTED] On Behalf Of rmarples Sent: Friday, February 01, 2008 10:33 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Array vs ArrayCollection But don't most controls internally wrap the array set as a dataprovider into an arraycollection? --- In flexcoders@yahoogroup

[flexcoders] Re: Array vs ArrayCollection

2008-02-01 Thread rmarples
> indicate changes to the array. > > > > > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Teddy Setiawan > Sent: Thursday, January 31, 2008 8:39 AM > To: flexcoders@yahoogroups.com > Subject: RE: [flexcoders] Re: Array

Re: [flexcoders] Re: Array vs ArrayCollection

2008-01-31 Thread Bjorn Schultheiss
Spot on.. Can't believed i never looked at that before. Just check out the ListBase src and got an example of how to do it. thanks. On 01/02/2008, at 10:54 AM, Troy Gilbert wrote: > I've got some scenarios where binding does not fire if I use ac.addItem or > ac.removeItem. > But it will fi

Re: [flexcoders] Re: Array vs ArrayCollection

2008-01-31 Thread Troy Gilbert
> I've got some scenarios where binding does not fire if I use ac.addItem or > ac.removeItem. > But it will fire if i use ac = new ArrayCollection.. Sounds like you're binding to just the ArrayCollection instance variable and not taking the second step and listening for the collection events.

Re: [flexcoders] Re: Array vs ArrayCollection

2008-01-31 Thread Bjorn Schultheiss
oders@yahoogroups.com Subject: RE: [flexcoders] Re: Array vs ArrayCollection I have the same problem regarding slower performance using arraycollection in some iterating process. Then I change it to array , but I get another big problem..memory leak. I use the array for small iter

RE: [flexcoders] Re: Array vs ArrayCollection

2008-01-31 Thread Alex Harui
s.com Subject: RE: [flexcoders] Re: Array vs ArrayCollection I have the same problem regarding slower performance using arraycollection in some iterating process. Then I change it to array , but I get another big problem..memory leak. I use the array for small iterating process and

RE: [flexcoders] Re: Array vs ArrayCollection

2008-01-31 Thread Teddy Setiawan
@yahoogroups.com From: [EMAIL PROTECTED] Date: Thu, 31 Jan 2008 16:18:46 + Subject: [flexcoders] Re: Array vs ArrayCollection This is something I too wonder about from time to time. I notice alot of developers are using the ArrayCollection for data binding but I

[flexcoders] Re: Array vs ArrayCollection

2008-01-31 Thread Nick
This is something I too wonder about from time to time. I notice alot of developers are using the ArrayCollection for data binding but I can't say with 100% confidence why one would be used in any specific problem domain opposed to a basic array. I guess if you find you want to use the functions ex