Disabling specific cell edit in Slick grid
javascript, slickgrid
Solution
grid.onBeforeEditCell.subscribe(function(e,args) {
if (!isCellEditable(args.row, args.cell, args.item)) {
return false;
}
});
Problem
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?