0
我有3列jqGrid
。
我們假設它A
,B
,C
。
當我插入數據時,我只需要填寫列A
和B
的數據。
列C
自動插入值爲A
+ B
。
我使用的jqGrid PHP和我使用的形式插入數據
是否有關於如何分配和插入的C
值的方法嗎?
我有3列jqGrid
。
我們假設它A
,B
,C
。
當我插入數據時,我只需要填寫列A
和B
的數據。
列C
自動插入值爲A
+ B
。
我使用的jqGrid PHP和我使用的形式插入數據
是否有關於如何分配和插入的C
值的方法嗎?
你可以計算而不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;
}}
]
})
哪裏是你的代碼,試圖做到這一點的C與custom formatter價值? – JakeGould