Jqgrid货币格式

Adn*_*han 15 format jquery currency jqgrid

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

它将数字转换5为$5.00,但这是一个信用额度,所以我需要将其显示为($5.00)而不是$5.00.

任何建议我应该改变:formatter => "currency"什么?

Ole*_*leg 23

您应该检查货币格式化程序的选项.你可以定义prefix,和suffix.例如,您可以使用以下选项

formatter:'currency',
formatoptions: {prefix:'($', suffix:')', thousandsSeparator:','}
Run Code Online (Sandbox Code Playgroud)

该演示在"总计"列中显示您需要的表格中的数字.

在此输入图像描述