我在这里包含了表格的屏幕截图。
问问题
231 次
2 回答
0
这个屏幕截图(http://s11.postimg.org/61za32rgz/Client_Sales.jpg)显示我的问题的解决方案显示我添加了另一列只是为了添加它,我需要制作(虚拟年初至今)整数,所以我可以把它们都总结出来。
最后,我需要设置 hidden:true 以便隐藏(虚拟列)。
谢谢。:)
于 2013-10-31T04:23:01.420 回答
0
不,javacript 需要它是要添加的数字。
要将Year-to-Date
列从字符串转换为整数,请将formatter
属性添加到 jqGrid 函数
formatter: function (cellValue, options, rawData, action) {
return parseInt(rawData[2]); //Assuming your Year-to-Date is the third column in your JSON object.
}
于 2013-10-30T11:57:48.437 回答