我遇到了问题
我在jqGrid
中有3列。
我们说A
,B
,C
。
当我插入数据时,我只需填写列A
和B
的数据。
自动插入列C
,其值为A
+ B
。
我正在使用jqGrid for PHP而我正在使用表单来插入数据
有没有办法分配和插入C
?
答案 0 :(得分:0)
您可以使用custom formatter无PHP
来计算C的值<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;
}}
]
})