I am new to JQGrid. My question is based on another question and response from this post: JQGrid: Dynamically set a cell to uneditable based on content
"I'm having some issues getting some cells (with cellEdit: true) to be non-editable even though the column is set to editable."
function noEditFormatter(cellValue, options, rowObject) {
if (cellValue == 'test')jQuery("#grid").jqGrid('setCell', options.rowId, 'ColName', '', 'not-editable-cell'); return cellValue; }
although this was very helpful now I am trying to figure out how to set the edit fields based on a different column values in the grid?
Thanks