I have a ComboBox that I bind to a standard HTTPService, I would like to add an event listener so that I can run some code after the ComboBox is populated from the data provider.
How can I do this?
|
|
I have a ComboBox that I bind to a standard HTTPService, I would like to add an event listener so that I can run some code after the ComboBox is populated from the data provider. How can I do this?
|
|||
|
|
|
|
You can use a mx.binding.utils.ChangeWatcher as described here. |
||
|
|
|
|
You can use
I have a longer description of how to work with |
||
|
|
|
|
You can also listen for the |
||
|
|
|
|
Where are you adding the listener compared to the loading of the data? Is it possible the data is being loaded, and the event fired, before you've added your listener? |
||
|
|
|
|
@Theo Thanks for the suggestions, I need to ensure that the ComboBox has been populated, before the function I need to execute, I don't think your suggestions will give me that.. I have tried this (my class extends ComboBox):
but the event does not seem to fire, even though the combo box is being populated... |
|||
|
|
|
|
@Herms The listener is definitely added before the web service call, here is an example of what my code look like (I simplified lots of things...): I have this flex component:
and then in a mxml file I have the FooComboBox with id "foo" and I call:
I need to execute some code after the combobox is completely databound...any ideas? |
||
|
|
|
|
Maybe the event doesn't trigger when the data provider is first set? Try setting the data provider to an empty array in the constructor, so that it's definitely changing instead of just being initially assigned later in your resultReturned() method. I've no clue if that will help, but it's worth a shot. Also, you're setting the provider to lastResult.Array.Element. That looks a little suspicious to me, as the data provider should probably be an array. Granted, I have no clue what your data looks like, so what you have could very well be correct, but it's something I noticed that might be related. Maybe it should just be lastResult.Array? |
||
|
|
|
|
In your example code, try running |
||
|
|