2014-06-23 115 views
0

我有問題如何在jqgrid中進行計算PHP

我有3列jqGrid

我們假設它AB,C

當我插入數據時,我只需要填寫列AB的數據。

C自動插入值爲A + B

我使用的jqGrid PHP和我使用的形式插入數據

是否有關於如何分配和插入的C值的方法嗎?

+0

哪裏是你的代碼,試圖做到這一點的C與custom formatter價值? – JakeGould

回答

0

你可以計算而不PHP

<table id="#grid-table"></table> 

jQuery("#grid-table").jqGrid({ 
    colNames: ['id', 'A', 'B', 'C'], 
    colModel: [ 
    {name: 'id', key: true, index: 'id', hidden: true}, 
    {name: 'A', index: 'A'}, 
    {name: 'B', index: 'B'}, 
    {name: 'C', formatter: function(cellvalue, options, rowData) { 
     return rowData.A + rowData.B; 
    }} 
    ] 
})