I am trying to force uppercase in some ComboBox
<s:ComboBox id="cbStocks" width="200" height="30" fontSize="16" dataProvider="{this.knownSymbols}" />
I tried the setStyle approach suggested by flexexamples without success
cbStocks.setStyle( "typographicCase", TypographicCase.CAPS);
and
cbStocks.textInput.setStyle( "typographicCase", TypographicCase.CAPS);
both throw an exception
RangeError: Property typographicCase value caps is out of range
How do you force Uppercase in a ComboBox?