我想使用jqGrid格式化数量。 当我使用下面的代码时,该列显示“NaN”而不是货币值。
我希望使用jqGird
以此格式显示$ 1,000.00或$ 10,000.00我怎样才能做到这一点?
{
name: 'amount',
index: 'amount',
align: 'left',
formatter:'currency', formatoptions:{decimalSeparator:",", thousandsSeparator: ",", decimalPlaces: 2, prefix: "$ "}
},
有什么建议吗?
答案 0 :(得分:0)
formatter:'currency',
formatoptions: {prefix:'($', suffix:')',thousandsSeparator:',',decimalPlaces: 2}