Jqgrid货币格式

发布于 2024-11-07 09:39:35 字数 247 浏览 4 评论 0原文

我有一个 jqgrid,它的选项 :formatter => “currency”

它将数字 5 转换为 $5.00,但这是信用金额,因此我需要将其显示为 ($5.00)代码> 而不是 $5.00

有什么建议我应该在 :formatter => 中更改什么吗? “货币”?

I have a jqgrid, its option :formatter => "currency"

It is converting number 5 as $5.00, but this is a credit amount so I need to display it as ($5.00) instead of $5.00.

Any recommendations what should I change in :formatter => "currency"?

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

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

发布评论

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

评论(1

幻梦 2024-11-14 09:39:35

您应该检查货币格式化程序的选项。您可以定义前缀后缀。例如,您可以使用以下选项

formatter:'currency',
formatoptions: {prefix:'(

演示显示在“总计”中' 以您需要的形式列出数字。

在此处输入图像描述

, suffix:')', thousandsSeparator:','}

演示显示在“总计”中' 以您需要的形式列出数字。

在此处输入图像描述

You should examine options of the currency formatter. You can define prefix, and suffix. For example you can use the following options

formatter:'currency',
formatoptions: {prefix:'(

The demo shows in the 'Total' column the numbers in the form which you need.

enter image description here

, suffix:')', thousandsSeparator:','}

The demo shows in the 'Total' column the numbers in the form which you need.

enter image description here

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