Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
Adobe Flex SDK 3.1 (Release)
-
None
-
None
-
Affected OS(s): Windows
Affected OS(s): Windows
Language Found: English
Description
Steps to reproduce:
1. Try to convert, from String to Number, values that exceeds 16 digits. Flex is automatically rounding it and adding zeros '0' after the 16th digit.
Examples:
String -> Number
27108966678979879 -> 27108966678979880
27108966678979879789 -> 27108966678979880000
Actual Results:
The converted value is not correct.
Expected Results:
The Flex not converts the number automatically.
Workaround (if any):
Use the value as String on the Flex Side, and convert to Integer on Java Side.