Using a NumberFormatter to format a number to two decimal places : NumberFormatter « Data Model « Flex






Using a NumberFormatter to format a number to two decimal places

Using a NumberFormatter to format a number to two decimal places
  
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    backgroundColor="white">
    <mx:XML id="myData">
        <root>
            <item name="weight" value="2.5" />
        </root>
    </mx:XML>
    <mx:NumberFormatter id="fmtNumber" precision="2" />
    <mx:Label
        text="Weight {fmtNumber.format(myData.item.@value)}lbs" />
</mx:Application>

   
    
  








Related examples in the same category

1.Use NumberFormatter to format numberUse NumberFormatter to format number
2.Set rounding for NumberFormatterSet rounding for NumberFormatter
3.Set precision for NumberFormatterSet precision for NumberFormatter
4.Set decimalSeparatorFrom for NumberFormatterSet decimalSeparatorFrom for NumberFormatter
5.Set thousandsSeparatorFrom for NumberFormatterSet thousandsSeparatorFrom for NumberFormatter
6.Using the NumberFormatter classUsing the NumberFormatter class