如何将货币格式化程序放入 Flex 数据网格列中?
我需要使用货币格式化程序来格式化该列。我知道如何进行货币格式化,我只需要一个有关如何将其实现到数据网格列中的示例。
I need to format the column with a currency formatter. I know how to do currency formatting I just need an example on how to implement it into the datagrid column.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
无需使用
itemRenderer
。只需使用labelFunction
。示例:DataGridColumn:
LabelFormatter 标签函数:
货币格式化程序:
No need to use an
itemRenderer
. Just use alabelFunction
. Example:The DataGridColumn:
LabelFormatter label function:
The Currency Formatter:
或者:
Or:
基于 ActionScript 的答案,不需要定义附加函数:
来自 Adobe 文档,labelFunction 属性对于执行更复杂的任务非常有用,例如将数据提供程序中的两个字段组合到一列中。但对于简单的任务(例如格式化货币值),上面的代码就足够了。
An ActionScript based answer that doesn't require defining an additional function:
From the Adobe docs, the labelFunction property is useful for performing more complex tasks, such as combining two fields from the data provider into one column. But for a simple task such as formatting currency values, the above code is sufficient.