RE: [flexcoders] Databinding in component

2008-02-13 Thread Tracy Spratt
: Tuesday, February 12, 2008 10:44 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Databinding in component But if my dataProvider is an ArrayCollection of object data, not XML, what would you suggest? Jason Merrill Bank of America GTO LLD Solutions Design Development eTools

RE: [flexcoders] Databinding in component

2008-02-12 Thread Merrill, Jason
] On Behalf Of Tracy Spratt Sent: Tuesday, February 12, 2008 2:18 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Databinding in component Yes, when repeater instantiates components, it creates a array of ids for each specific id, so

RE: [flexcoders] Databinding in component

2008-02-12 Thread Tracy Spratt
, February 12, 2008 2:24 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Databinding in component Thanks Tracy, I'll try that route. Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer Community From

RE: [flexcoders] Databinding in component

2008-02-12 Thread Merrill, Jason
In this test case below, why do I get a warning message for the mx:Label that databinding may not be able to detect changes in the HSlider? I'm just trying to create labels that always shows the value of the respective slider. Since this is in a repeater, is it a conflict with the way I assign

RE: [flexcoders] Databinding in component

2008-02-12 Thread Tracy Spratt
From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Merrill, Jason Sent: Tuesday, February 12, 2008 12:46 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Databinding in component In this test case below, why do I get a warning message

RE: [flexcoders] Databinding in component

2008-02-12 Thread Merrill, Jason
: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Tuesday, February 12, 2008 2:40 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Databinding in component Below are some snippets. Tracy

Re: [flexcoders] Databinding in component

2008-02-04 Thread Scott Melby
Jason - Clicking the button will generate a collection change event, but will not trigger data binding because the value of _dataProvider is not changing (no assignment is being made to the _dataProvider member). If you want to know when items are added to/removed from the collection you

RE: [flexcoders] Databinding in component

2008-02-04 Thread Merrill, Jason
:[EMAIL PROTECTED] On Behalf Of Sherif Abdou Sent: Monday, February 04, 2008 3:33 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Databinding in component you could always just do nameOfComponent.dataProvider = fakedata and that work

Re: [flexcoders] Databinding in component

2008-02-04 Thread Sherif Abdou
you could always just do nameOfComponent.dataProvider = fakedata and that work but i dont know if that is what you are looking for. - Original Message From: Merrill, Jason [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, February 4, 2008 1:50:32 PM Subject: [flexcoders]

RE: [flexcoders] Databinding in component

2008-02-04 Thread Merrill, Jason
_dataProvider.addEventListener(CollectionEvent.COLLECTION_CHANGE, handleCollectionChanged, false, 0, true); Thanks Scott, exactly what I was looking for! Jason Merrill Bank of America GTO LLD Solutions Design Development eTools Multimedia Bank of America Flash Platform Developer