vote up 0 vote down star

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?

flag

49% accept rate

8 Answers

vote up 1 vote down

You can use a mx.binding.utils.ChangeWatcher as described here.

link|flag
vote up 0 vote down

You can use BindingUtils to get notified when the dataProvider property of the combo box changes:

BindingUtils.bindSetter(comboBoxDataProviderChanged, comboBox, "dataProvider");

BindingUtils lives in the mx.binding.utils package.

I have a longer description of how to work with BindingUtils here: Does painless programmatic data binding exist?

link|flag
vote up 0 vote down

You can also listen for the ResultEvent.RESULT on the HTTPService, that would be called slightly before the combo box got populated I guess, but it might be good enough.

link|flag
vote up 0 vote down

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?

link|flag
vote up 0 vote down

@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):


this.addEventListener(FlexEvent.DATA_CHANGE,dataChange);

private function dataChange(e:FlexEvent):void
{
    // combobox has been databound
}

but the event does not seem to fire, even though the combo box is being populated...

link|flag
vote up 0 vote down

@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:


public class FooComboBox extends ComboBox
{
    private var service:HTTPService = null;
    public function ProjectAutoComplete()
    {
        service = new HTTPService();
        service.url = Application.application.poxmlUrl;
        service.addEventListener(FaultEvent.FAULT,serviceFault);
        service.addEventListener(ResultEvent.RESULT,resultReturned);


        this.addEventListener(FlexEvent.DATA_CHANGE,dataChange);
    }
    public function init():void
    {
        var postdata:Object = {};
        postdata["key"] = "ProjectName";
        postdata["accountId"] = Application.application.accountId
        service.send(postdata);
    }
    private function resultReturned(event:ResultEvent):void
    {
        this.dataProvider = service.lastResult.Array.Element;
        // thought I could do it here...but no luck...
    }
    private function dataChange(e:FlexEvent):void
    {
        // combobox has been databound
        mx.controls.Alert.show("databound!");
    }
    ...
}

and then in a mxml file I have the FooComboBox with id "foo" and I call:


foo.init();

I need to execute some code after the combobox is completely databound...any ideas?

link|flag
vote up 0 vote down

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?

link|flag
vote up 0 vote down

In your example code, try running validateNow() in the resultReturned method. That will force the combo box to commit its properties. The thing is that even though the property is set the new value isn't used until commitProperties is run, which it will do at the earliest on the next frame, validateNow() forces it to be done at once.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.