I want to show Week number on the left of the Monthly Calendar. Just like Week-numbers in the Navigator.
You can show the week numbers in the first cell using onBeforeCellRender.
Example for ISO week number (week starting on Monday):
dp.onBeforeCellRender = function(args) { if (args.cell.start.getDayOfWeek() === 1) { args.cell.areas = [ {left: 2, top: 2, html: "Week " + args.cell.start.weekNumberISO() } ]; } };
See also: https://api.daypilot.org/daypilot-month-onbeforecellrender/ https://api.daypilot.org/daypilot-date-weeknumber/ https://api.daypilot.org/daypilot-date-weeknumberiso/
Thanks a lot for the answer :)