我有以下代码段,并希望将值显示为百分比
example .3.342 as 3.34 %
8.432 as 8.43 %
这是我的代码段
{ name: 'eRatio', label: 'eRatio',width: 75, sorttype: 'number', align: "right", formatter: 'percentage', formatoptions: { prefix: "", suffix: " "} },
我需要添加什么才能显示为百分比?
答案 0 :(得分:1)
jqGrid没有预定义的formatter: 'percentage'
,但可以使用formatter: "currency":
formatter: "currency", formatoptions: { suffix: " %"}
decimalPlaces
formatoptions
属性的默认值已经是您想要的2。因此,输入值3.342
和8.432
将显示为3.34 %
和8.43 %
。