Active Questions
Scheduler - build 5777 broke event rendering
Answered: This happens if you specify both text and html properties for events. This regression incorrectly applies text if both values are specified - the html property should have higher priority. It should ...
How to smoothen resize animation?
Answered: Please see my answer here: https://forums.daypilot.org/question/6206/smooth-draganddrop
Dynamic disabled cells in scheduler
Answered: You can customize the drag-and-drop moving behavior using the onEventMoving event handler. It lets you forbid the drop depending on the source event and the target position.
Is it possible to use events with different phases to make it shape like this?
Answered: You can customize the Scheduler event appearance using the onBeforeEventRender event handler. It lets you apply custom CSS class to the event, and specify event phases using active areas. See also th...
Listen to onEventMoving
Answered: The onEventMoved event is fired when all updates are complete, and it’s fine to use it for updating either the calendar/scheduler itself or external elements. The onEventMoving event is fired in real...
Cells disabled not working when moving an event
Answered: This was a regression that has been fixed in version 2023.4.5772. Please let me know if the problem persists.
OnEventmoving and OnEventMoved drag acts crazy.
Answered: It behaves as if the Calendar component were updated in the middle of the drag-and-drop movement. You can see that the source event (which is marked with calendar_default_event_moving_source CSS clas...
Font color for event name
Answered: You can customize the row header using the onBeforeRowHeaderRender event handler.
Daypilot resource forecolor
Answered: You can customize the row header using the onBeforeRowHeaderRender event handler.
Enhanced keyboard navigation for automatic timerange selection
Answered: > Why don’t select a cell or event when moving the cursor? In Excel when I move my cursor to the next cell, it selected the cell direct and I can edit or add something. OK, let’s see if I understand ...
Strange behavior of keyboard navigation
Answered: This bug should be fixed now in the latest sandbox build (2023.4.5802): https://release.daypilot.org/changes/js/ Please let me know if the problem persists.
How can I add space at the top and bottom between events in the Scheduler?
Answered: You can define a custom margin beneath each event with the eventMarginBottom property, or alternatively, override the CSS to introduce additional whitespace. For more details, please see the Event Sp...
How to increase the height of the row headers located on the left side of the Scheduler?
Answered: There are a couple of options; please see the Row Height topic in the Scheduler documentation.
Daypilot Freeze Top Row
Answered: I assume you mean the Scheduler component. It is possible to freeze the specified rows - please read more in the Frozen Rows documentation topic.
Critical Issue with Drag and Drop.
Answered: Most likely, this is caused by the fractional value used for the cellHeight property: const config: any = {
cellHeight: 42.75,
// ...
} I recommend using an integer value. Fractional values ma...
Keyboard navigation doesn't skip invisible rows
Answered: This bug should be fixed now in the latest sandbox build (2023.4.5797): https://release.daypilot.org/changes/js/ Please let me know if the problem persists.
How to enable horizontal autoscroll in calendar?
Answered: AutoScroll is enabled by default in the Calendar component for drag-and-drop operations (moving, resizing, and time range selection). You can set the value of the autoScroll property to "Always" to e...
Error on keyboard navigation on long event
Answered: This bug should be fixed now in the latest sandbox build (2023.4.5786): https://release.daypilot.org/changes/js/ Please let me know if the problem persists.
DayPilot Vue Event Calendar loses css after build
Answered: This is not a limitation of the trial version. I recommend checking the DOM structure of the production build in the browser (using developer tools) to see whether the elements are using the expected...
Is is possibile to enable horizontal drag and drop on calendar?
Answered: Could you please specify which type of drag-and-drop you are referring to? You can drag events horizontally without any problems, it is enabled by default.