You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "Robbyn Gerhardt (JIRA)" <ji...@apache.org> on 2014/11/25 13:09:12 UTC

[jira] [Created] (FLEX-34645) CurrencyFormatter the currencySymbol not null

Robbyn Gerhardt created FLEX-34645:
--------------------------------------

             Summary: CurrencyFormatter the currencySymbol not null
                 Key: FLEX-34645
                 URL: https://issues.apache.org/jira/browse/FLEX-34645
             Project: Apache Flex
          Issue Type: Bug
    Affects Versions: Apache Flex 4.13.0
         Environment: If I set the value currencySymbol to null, then the default icon coming out
            Reporter: Robbyn Gerhardt
             Fix For: Apache Flex 4.14.0


var myNumber:Number = 10;
//Output: 10

var fomratter:CurrencyFormatter	=	new CurrencyFormatter();
fomratter.currencySymbol						=	null;
fomratter.decimalSeparatorTo					=	",";
fomratter.precision								=	2;
fomratter.useThousandsSeparator					=	false;

var newNumber:String	=	fomratter.format(myNumber);

//Output: 10.00 $



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)