Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
Adobe Flex SDK 3.0 (Release)
-
None
-
None
-
Affected OS(s): Windows
Affected OS(s): Windows XP
Language Found: English
Description
Steps to reproduce:
1. use NumberFormatter as follows:
var nf:NumberFormatter = new NumberFormatter();
nf.useThousandsSeparator = true;
nf.thousandsSeparatorTo = ".";
return nf.format(Math.round(value));
2.apply valid Number as value (i.e. 42906)
3.
Actual Results:
empty string
Expected Results:
42.906
Workaround (if any):
don't know any with NumberFormatter
If there is a conflict with the default decimal separator, I would at least expect an exception to be thrown.