如何在 Flex 中设置货币数据字段的格式

发布于 2024-07-06 13:13:12 字数 117 浏览 11 评论 0原文

我有一个 xml 文件,为 Flex 2 中的数据网格提供数据,其中包含未格式化的价格字段(即:它只是一个数字)。 谁能告诉我如何获取该数据字段并对其进行格式化 - 添加货币符号,放入千位分隔符等。 谢谢。 S。

I have an xml file providing data for a datagrid in Flex 2 that includes an unformatted Price field (ie: it is just a number).
Can anyone tell me how I take that datafield and format it - add a currency symbol, put in thousand separators etc.
Thanks.
S.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

绝對不後悔。 2024-07-13 13:13:12

非常感谢您的回答...他们帮助很大。

最后我找到了一个涉及以下三个要素的解决方案:

<mx:DataGridColumn headerText="Price" textAlign="right"  labelFunction="formatCcy" width="60"/>

public function formatCcy(item:Object, column:DataGridColumn):String
        {
         return euroPrice.format(item.price);
        }

<mx:CurrencyFormatter id="euroPrice" precision="0" 
    rounding="none"
    decimalSeparatorTo="."
    thousandsSeparatorTo=","
    useThousandsSeparator="true"
    useNegativeSign="true"
    currencySymbol="€"
    alignSymbol="left"/>

我不知道这是否是正确的解决方案,但它似乎有效(目前),
再次感谢,
斯...

Thanks alot for your answers...they helped a great deal.

In the end I went for a solution that involved the following three elements:

<mx:DataGridColumn headerText="Price" textAlign="right"  labelFunction="formatCcy" width="60"/>

public function formatCcy(item:Object, column:DataGridColumn):String
        {
         return euroPrice.format(item.price);
        }

<mx:CurrencyFormatter id="euroPrice" precision="0" 
    rounding="none"
    decimalSeparatorTo="."
    thousandsSeparatorTo=","
    useThousandsSeparator="true"
    useNegativeSign="true"
    currencySymbol="€"
    alignSymbol="left"/>

I dont know whether this is the correct solution, but it seems to work (at the moment),
Thanks again,
S...

沒落の蓅哖 2024-07-13 13:13:12

如上所述,一种简单的方法是将 labelFunction 添加到指定列并格式化其中的数据。

我经常发现使用对象比使用直接 XML 更容易,所以通常如果我从函数接收 XML,我会为该 XML 创建一个对象和解析器,如果您愿意,也可以在解析器内格式化数据。

处理这个问题的另一种方法是在 itemRenderer 内部。 例子:

<mx:DataGridColumn id="dgc" headerText="Money" editable="false">
    <mx:itemRenderer>
      <mx:Component>
         <mx:HBox horizontalAlign="right">
        <mx:CurrencyFormatter id="cFormat" precision="2" currencySymbol="$" useThousandsSeparator="true"/>
            <mx:Label id="lbl" text="{cFormat.format(data)}" />
         </mx:HBox>
      </mx:Component>
    </mx:itemRenderer>
</mx:DataGridColumn>

As stated above an easy way to do this would be to add a labelFunction to the specified column and format the data within there.

Frequently I find that its much easier to work with objects then straight XML so normally if I am receiving XML from a function I would create an object and parser for that XML and you can format the data inside the parser also if you like.

Another way to handle this would be inside an itemRenderer. Example:

<mx:DataGridColumn id="dgc" headerText="Money" editable="false">
    <mx:itemRenderer>
      <mx:Component>
         <mx:HBox horizontalAlign="right">
        <mx:CurrencyFormatter id="cFormat" precision="2" currencySymbol="$" useThousandsSeparator="true"/>
            <mx:Label id="lbl" text="{cFormat.format(data)}" />
         </mx:HBox>
      </mx:Component>
    </mx:itemRenderer>
</mx:DataGridColumn>
旧瑾黎汐 2024-07-13 13:13:12

CurrencyFormatter 类怎么样

请参阅 此处获取 Flex 2 的文档。它非常易于使用。

您可以在 DataGrid 列的 labelFunction 中使用其中之一来设置数字格式。

How about the CurrencyFormatter class

See here for docs from Flex 2. It's pretty easy to use.

You can use one of these in a labelFunction on a DataGrid Column to format your numbers.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文