我是JQGrid的新手。我的问题是基于这篇文章的另一个问题和回应: JQGrid: Dynamically set a cell to uneditable based on content
“即使将列设置为可编辑,我也会遇到一些问题(即使用cellEdit:true)不可编辑。”
function noEditFormatter(cellValue,options,rowObject){
if(cellValue =='test')jQuery(“#grid”)。jqGrid('setCell',options.rowId,'ColName','','not-editable-cell'); return cellValue; }
虽然现在这非常有用,但我想弄清楚如何根据网格中的不同列值设置编辑字段?
由于