Hi,
I have a grid where the editmode is set to ‘selectedrow’.
I have a scenario where some cells in my grid need to be non-editable.
I’m doing something like this :
{ text: 'First Name', columntype: 'textbox', datafield: 'firstname', width: 90,
cellbeginedit: function (row) {
return column.editableRows[row]; // Can be true for some cells and false for some
}
}
This is similar to the 1st example from here : http://www.jqwidgets.com/disable-editing-of-a-grid-row-or-cell/
However, even if a single cell is editable on a row. The entire row remains editable.
Is there any way in which I can have just a few cells from a row which are non-editable while the rest are editable?