How do we use ag grid to enable or disable 'editable' property for only 1 cell? I know that for styling, for example, we're able to change cell style for only 1 cell in the callback like below:
column.cellStyle = function (params) {
if (some condition) {
return '{ border: '1px solid red'};
} else {
return '{ border: '1px solid green'};
}