Cannot Change View Type To "Resources"
Answered: Most likely, you are using DayPilot Lite for ASP.NET WebForms - the open source version for ASP.NET. At this moment, the resources view is supported in the open-source JavaScript version and in all P...
DayPilotMonth Integration with MS Outlook
Answered: You are right, this iCalendar tutorial is a bit outdated. I’ve added your request to the tutorial plan and it should appear at code.daypilot.org soon. We don’t plan to add iCalendar support directly ...
Consistent .makeDraggable() functionality
Answered: In the latest release (2024.4.6293), the makeDraggable() methods for Calendar and Scheduler components now use the same structure of the options parameter. remove, onDragStart and onDrop are availabl...
Changing date format on Day/Week view
Answered: You can use the locale property to apply culture-specific settings (such as date format, first day of week….). const calendar = new DayPilot.Calendar("calendar", {
locale: "en-au",
// ...
});
...
daypilot-pro-angular - Angular version 15
Answered: Please make sure that you are using the latest DayPilot Pro version. Angular Ivy is supported since version 2022.2.5344.
Delete (x) button is not shown, when there are overlapping dates
Answered: There are multiple modes available for arranging overlapping events. If you use eventArrangement: "SideBySide", the events will be displayed with their full width always visible.
beforeCellRenderCaching in 'normal' calendar
Answered: Hello Dan, while I was preparing some code for this issue, I found the mistake myself… my backend data was fetched via rest call correctly, but the data was not assigned to the object, which I use in...
I don't see the event on the calendar but it is present on DB
Answered: This tutorial was created for an older version of PHP. PHP 8.3 produces warnings about using dynamic properties: Deprecated: Creation of dynamic property ... is deprecated in ... on line ... That dis...
Remove Text
Answered: The DEMO label indicates that you are using a trial version of DayPilot Pro. To remove the label, you need to purchase a license.
Summing cost values stored in "tags" (args.data.tags.cost)
Answered: Yes, you can do it using the onBeforeCellRender event, like this: onBeforeCellRender: args => {
if (args.cell.row.data && args.cell.row.data.frozen) {
const events = scheduler.events.forRange...
List of all questions.