jqgrid货币格式化程序返回NaN

时间:2014-03-20 06:39:26

标签: jqgrid-formatter

我想使用jqGrid格式化数量。 当我使用下面的代码时,该列显示“NaN”而不是货币值。

我希望使用jqGird

以此格式显示$ 1,000.00或$ 10,000.00

我怎样才能做到这一点?

{
              name: 'amount',
              index: 'amount',
              align: 'left',
              formatter:'currency', formatoptions:{decimalSeparator:",", thousandsSeparator: ",", decimalPlaces: 2, prefix: "$ "}
        },

有什么建议吗?

1 个答案:

答案 0 :(得分:0)

formatter:'currency',
formatoptions: {prefix:'($', suffix:')',thousandsSeparator:',',decimalPlaces: 2}