我这里包括表格的截图。
答案 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.
}