I'm having trouble with a spark CurrencyFormatter, which is failing to format the value 0 correctly.
All other values are formatted fine.
I'm using Flex 4.5
Here's an example:
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600">
<fx:Declarations>
<s:CurrencyFormatter currencyISOCode="GBP" id="formatter" useCurrencySymbol="true" currencySymbol="£" trailingZeros="true" leadingZero="true" negativeCurrencyFormat="0" positiveCurrencyFormat="0" />
</fx:Declarations>
<s:HGroup>
<s:TextInput id="textInput" />
<s:Label text="{formatter.format(textInput.text)}" />
</s:HGroup>
</s:Application>
When the value of the textInput is anything other than 0, it's formatted correctly.
What's the correct setting to get this to format correctly?