Disabled Cells don't work in Chrome
6 years ago.
Hi, I try to use disabled cells as described in https://doc.daypilot.org/scheduler/disabled-cells/
I want to disable a complete row/resource.
dp.onBeforeCellRender = function(args) {
if (args.cell.resource === "Projekte") {
args.cell.disabled = true;
args.cell.backColor = "#000000";
}
};
This seems to work perfectly in Firefox 73, but not in Chrome 80. Do you have any hint?
DayPilot