0

I have a MultiSelectComboBox in an ExtendedAdvancedDataGrid to filter a column, and when I click on it, the text in the popup box (a list of check boxes) is light grey on a white background. I tried changing the style using popUpStyleName, but nothing changes.

Any idea what could override this style?

Charles Menguy
  • 40,830
  • 17
  • 95
  • 117
user1916817
  • 73
  • 1
  • 8

1 Answers1

0

MSCB internally encapsulates a Checkboxlist. Try something like (Flex 3):

CheckBoxList {

            backgroundAlpha: 0.9;
             backgroundColor: #EFEFEF;
             color: #444444;



}

Or

controls|CheckBoxList {

        backgroundAlpha: 0.9;
        backgroundColor: #EFEFEF;
        color: #444444;

}

flexicious.com
  • 1,601
  • 1
  • 13
  • 21