I want to show no event in the dates in calendar where events are not listed (DayPilot.Month)
Since version 2019.3.3907 you can use this:
dp.onBeforeCellRender = function(args) { if (args.cell.events().length === 0) { args.cell.html = "No event here"; } };
args.cell.events().length is not a function error coming