[flexcoders] Binding refresh

2006-02-16 Thread Jonathan Miranda
Alright, I am sending a custom mxml component an array using: theDates={myDateArray} theDates are the displayNames for a chart and yet I can have them update. myDateArray is Bindable and Im literally destroying the array (myDateArray = new Array(5)) and setting new values and yet

Re: [flexcoders] Binding refresh

2006-02-16 Thread Alberto Albericio Salvador
Hi Jonathan, If your're working with Flex2, try using an ArrayCollection instead of an Array. The Array class does not throw any event on change to update such controls anymore. Alberto Albericio Salvador Aura S.A. Seguros Departamento Informática Jonathan Miranda escribió: Alright, I am

Re: [flexcoders] Binding refresh

2006-02-16 Thread Carolyn Cole
You can try calling executeBindings() on the chart after you create the new dates. At 11:11 AM 2/16/2006, you wrote: Alright, I am sending a custom mxml component an array using: “theDates={myDateArray}” theDates are the displayNames for a chart and yet I can have them update. myDateArray

RE: [flexcoders] Binding refresh

2006-02-16 Thread Jonathan Miranda
Salvador Sent: Thursday, February 16, 2006 9:19 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Binding refresh Hi Jonathan, If your're working with Flex2, try using an ArrayCollection instead of an Array. The Array class does not throw any event on change to update such controls