2013-10-30 89 views

回答

0

解決我的問題,因爲這個截圖(http://s11.postimg.org/61za32rgz/Client_Sales.jpg)顯示了我添加另一列只是添加它,我需要製作(Dummy Year-To-Date)整數,所以我可以總結它們。

最後,我需要設置hidden:true,以便隱藏(Dummy列)。

謝謝。 :)

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. 
} 
+0

嗨@Saravanan, 謝謝你的時間回答這個問題, 它沒有爲我工作。 – jhed

相關問題