Re: [flexcoders] Bindable tag question

2008-05-18 Thread Josh McDonald
If you call addItem(), updateItem(), etc, the PropertyChangedEvent is dispatched by the IList implementor (ie, ArrayCollection). But, if you have an IList of objects, and you do this: var company : Company = companyList.getItemAt(3) as Company; company.name = "New name"; then you'll only get the

[flexcoders] Bindable tag question

2008-05-18 Thread gaurav1146
Hi, I have been using Bindable tag for data providers in datagrid, list etc. The doc states that this ensures that the destination datagrid would reflect the change when the dataprovider is changed. But I have observed that even if I do not use the Bindable tag the datagrid is still updated when