flex 4.1 NumberFormatter:配置为仅在数字为浮点数时显示精度为 1
目前我使用以下 NumberFormatter:
<mx:NumberFormatter id="numberFormatter" precision="1" useThousandsSeparator="true" />
因此它将 5.43234234 更改为 5.4。
如果没有精度,我希望 NumberFormatter 不显示任何精度。
这意味着如果数字是 5.0,我希望将其格式化为 5,而不是 5.0。
我怎样才能这样做呢?
使用 Flex 4.1
谢谢
Currently I use the following NumberFormatter:
<mx:NumberFormatter id="numberFormatter" precision="1" useThousandsSeparator="true" />
so it changes 5.43234234 to 5.4.
I want the NumberFormatter to not show any precision if there isn't one.
which means that if the number is 5.0, i want it to format it to 5, and not to 5.0.
how can I do so?
using flex 4.1
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为你需要集成你自己的actionscript代码,你不能仅使用MXML标签来做到这一点。比如:
我还没有运行过这个,但我认为它会起作用。
I think you need to integrate your own actionscript code, you can't do it with a MXML tag only. Something like:
I haven't run this but I reckon it will work.
或者您可以使用此函数包装输出:
Or you can wrap the output with this function: