up vote 3 down vote favorite
3
share [g+] share [fb]

I have two related ComboBoxes ( continents, and countries ). When the continents ComboBox changes I request a XML from a certain URL. When I receive that XML i change the DataProvider for the countries ComboBox, like this:

public function displayCountryArray( items:XMLList ):void
        {
            this.resellersCountryLoader.alpha = 0;
            this.resellersCountry.dataProvider = items;
            this.resellersCountry.dispatchEvent( new ListEvent( ListEvent.CHANGE ) );
        }

I dispatch the ListEvent.CHANGE because I use it to change another ComboBox so please ignore that (and the 1st line ).

So, my problem is this: I select "ASIA" from the first continents, then the combobox DATA get's updated ( I can see that because the first ITEM is an item with the label '23 countries' ). I click the combo then I can see the countries.

NOW, I select "Africa", the first item is displayed, with the ComboBox being closed, then when I click it, the countries are still the ones from Asia. Anyway, if I click an Item in the list, then the list updates correctly, and also, it has the correct info ( as I said it affects other ComboBoxes ). SO the only problem is that the display list does not get updated.

In this function I tried these approaches

  • Converting XMLList to XMLCollection and even ArrayCollection

  • Adding this.resellersCountry.invalidateDisplayList();

  • Triggering events like DATA_CHANGE and UPDATE_COMPLETE I know they don't make much sense, but I got a little desperate.

Please note that when I used 3.0.0 SDK this did not happen.

Sorry if I'm stupid, but the flex events are killing me.

link|improve this question
feedback

protected by Jeff Atwood Jul 12 '10 at 23:39

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

3 Answers

up vote 6 down vote accepted

Setting the dataprovider of the comboBox' dropdown seems to fix this problem.

this.resellersCountry.dataProvider = items;
this.resellersCountry.dropdown.dataProvider = items;
link|improve this answer
sorry, but I already changed the GUI and cannot check your solution. I'll try it as soon as I get the chance and accept your answer. Thanks, again. – Gabriel Poama-Neagra May 10 '10 at 11:33
checked. it's working. – Gabriel Poama-Neagra Jun 1 '10 at 9:12
Worked for me, too. – Konsumierer Apr 14 '11 at 15:22
feedback

this.resellersCountry.dropdown.dataProvider = items;

works (Flex SDK 3.5)

Hope this bug fixed in 4.0

link|improve this answer
feedback

In addition to Christophe´s answer:

When you are using data binding in your ComboBox you need to use the BindingUtils to set the dropdown´s dataprovider:

MXML:

<mx:ComboBox id="cb_fontFamily"
        width="100%"
        dataProvider="{ model.fontFamilies }" />

Script:

private function init():void
{
    BindingUtils.bindSetter(updateFontFamilies, model, "fontFamilies");
}

private function updateFontFamilies(fontFamilies:ArrayCollection):void
{
    if (cb_fontFamily != null) cb_fontFamily.dropdown.dataProvider = fontFamilies;
}

Thanks to Christophe for pointing in the right direction.

link|improve this answer
feedback

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