Saturday, May 11, 2024
 Popular · Latest · Hot · Upcoming
31
rated 0 times [  33] [ 2]  / answers: 1 / hits: 20559  / 14 Years ago, mon, january 17, 2011, 12:00:00

I'm having some issues getting some cells (with cellEdit: true) to be non-editable even though the column is set to editable.



I've tried many ways, like beforeEditCell, formatters, etc. None seem to work.



The closest I've got is by setting a formatter to the column that I'd like to be editable and then using setCell to set the 'not-editable-cell' class (snippet below). The first time you click the cell, it unfortunately goes into edit mode, but if you click elsewhere and try to re-edit the cell, it's successfully uneditable.



I've also tried using the same snipped but inside of beforeEditCell, it successfully stops the cell from being edited but in turn 'freezes' the grid. You can no longer select any other cell.



function noEditFormatter(cellValue, options, rowObject) {
if (cellValue == 'test')
jQuery(#grid).jqGrid('setCell', options.rowId, 'ColName', '', 'not-editable-cell');
return cellValue;
}


Any help would be much appreciated.


More From » jquery

 Answers
25

The idea to use setCell method to add class 'not-editable-cell' to the cells which should be not-editable is correct. You choose only the wrong place to do this. Inside of custom formatter, the grid can be not yet built till the end. I recommend you to use loadComplete or gridComplete to examine the grid contain of the current page and mark some cells as not-editable.



I prepared an example which demonstrate this. Like in your example all cells having test text are marked as non-editable. In the way you can examine one cells and mark another cells as non-editable.


[#94183] Saturday, January 15, 2011, 14 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
daryldeontaeh

Total Points: 46
Total Questions: 97
Total Answers: 105

Location: Maldives
Member since Sat, Jan 29, 2022
2 Years ago
;