jqGrid夏季页脚可以和字符串和数字相加吗?

时间:2013-10-30 11:14:54

标签: javascript jqgrid

我这里包括表格的截图。

enter image description here

1 个答案:

答案 0 :(得分:0)

不,javascript需要它作为要添加的数字。

要将Year-to-Date列从String转换为Integer,请将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.
}