Is there a way to disable a cell for editing? We can define editor at column level but can we disable that editor for specific rows?
grid.onBeforeEditCell.subscribe(function(e,args) {
if (!isCellEditable(args.row, args.cell, args.item)) {
return false;
}
});