Much better. Just one thing I need to ask. When I use this, as in the last two images I added, it kind of alternates the begining of each appointment between left and right sides. It is much better than before, but I would prefer for them to line up. Is there anything that can be done?
This is my current script
const calendar = new DayPilot.Calendar("dp", {
viewType: "WorkWeek",
startDate: document.getElementById("WeekStart").value,
headerDateFormat: "dddd dd MMMM",
locale: "es-es",
cellDuration: 20,
cellHeight: 60,
useEventBoxes: "Never",
onEventClick: function(args) {
window.location.href = `/Agenda/Details/${args.e.id()}`;
}
});
calendar.init();
Thanks in advance.