我有一个jqgrid,它的选项:formatter => “货币”
它将第5号转换为$5.00,但这是一个信用额度,所以我需要显示为($5.00)而不是$5.00.
任何建议我应该改变什么:formatter => “货币”?
解决方法
您应该检查
the currency formatter的选项.您可以定义前缀和后缀.例如,您可以使用以下选项
formatter:'currency',formatoptions: {prefix:'($',suffix:')',thousandsSeparator:','}