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...
Debug code for scheduler
Hello, I am testing calendar integrations in a CRM system and have encountered some specific issues. While all functionality works correctly in the HTML window (excluding double-click, right-click, a...
Scheduler watch update events
Answered: In order to detect changes performed by the Scheduler UI in Vue, you need to watch the source object. Like this: <template>
<DayPilotScheduler
:events="events"
:resources="resources"
...
Event Calendar Delete Confirmation?
Answered: When you use an async function in the event handler, calling args.preventDefault() after await has no effect as the processing continues immediately (before args.preventDefault() gets called). You ne...
Restrict multiple Days Selection
How to block multiple days selection and also adding multiple events on each day.
Multi day selection in week view
Answered: Unfortunately, this feature is only available in the Pro version at the moment. In the open-source version, the selection is limited to a single column of the Calendar component.
Plans on using Canvas?
Answered: Canvas is very fast, but it doesn’t support HTML for styling which is a huge disadvantage. We built a prototype some time ago. Everyone wants it fast but when it comes to styling, nobody wants to giv...
YearView Scheduler
Answered: Thanks, Mikolaj! There are two options: You can force a specific line in a row using the line property of an event. You can join the events virtually into a single unit using the container property -...
Check For Overlap with Javascript
Answered: You can do it in the onEventMove event handler using the events.forRange() method: onEventMove: args => {
const movedEvent = args.e;
const newStart = args.newStart;
const newEnd = args...
List of all questions.