Active Questions
Scheduler - Behavior of Events reaching the right side
Answered: The floating events feature is only available for the left side of the viewport.
React Scheduler > Difficulty with applying css on row header background and rowmove handle
Answered: It looks like this CSS works for me, so the problem might be somewhere else. You can try turning off your custom JSX temporarily to see if that causes the issue. .scheduler_default_rowheader:hover {
...
why it is not available in npm?
Answered: This is an example project. The library itself (Angular package) is available as @daypilot/daypilot-lite-angular at NPM.
React Scheduler > How to make shadow of event while moving respects the event height, despite margin top of resource
Answered: Hi Andy, In the latest sandbox build (2025.4.6701), it is now possible to set a custom shadow height in onEventMoving using args.height (in pixels).
Scheduler: issue with resources spanning multiple rows
Answered: These two things don’t seem to work correctly in your setup: 1. Coloring the cells All cells in a column should be colored correctly with this event handler: onBeforeCellRender: (args) => {
if (ar...
Scheduler - cell mouseover time headers shaded with custom colour
Answered: Yes, you can do it using CSS. In the default (built-in) CSS theme, the following styles are used: .scheduler_default_crosshair_vertical,
.scheduler_default_crosshair_horizontal,
.scheduler_default_...
React Scheduler > Scheduler automatically expands the children of the dragged
Answered: Hi Andy, By default, the Scheduler expands parents nodes automatically when you drag an event over them. You can disable this behavior using the treeAutoExpand property (set the value to false).
"dp.events.update(dpEvent)" sometimes redraw all Events on a Calendar
Answered: I close my browser, open it again and now it doesn’t flicker anymore! :-| I guess we’ll never know…
React Scheduler > Centering event bar
Answered: Hi Andy, You are probably using rowMinHeight to set the row height. If there are no overlapping events, it is possible to center the event by replacing it with rowMarginTop and rowMarginBottom.
Scheduler - Event disappears if start is not in viewport
Answered: I am using the default theme, I am just changing colours on the before render events. I have turned floating events off and it works fine for what I need.
DayPilot.Bubble() does not hide automatically anymore
Answered: Hi Leo, This logic hasn’t changed recently. In the demo, it seems to work fine. There are two things to check: Setting the value to 0 disables hiding. If you want to use the shortest delay possible, ...
React Scheduler > `timeRangeSelectedHandling: 'Disabled` does not register click on timeline canvas
Answered: Hi Andy, The Scheduler handles the mousedown event and prevents it from bubbling if the timeRangeSelectedHandling is set to "Disabled". To hide the popover, you can handle the onGridMouseDown event. ...
Hidding an Event Bubble when scrolling a Calendar
Answered: The bubble hides if the cursor is moved outside of the source object and the bubble itself. I assume that in your scenario, the cursor stays inside but the calendar scrolls. Is that correct? The cont...
Cannot set properties of null (setting 'overlapping')
Answered: Hi Leo, This issue should be fixed now in the latest sandbox build (2025.4.6672). It was relatively harmless - it had no effect on the UI in most cases. You could reproduce it using Ctrl + click on a...
React Scheduler > Control visibility of row move handle
Answered: Hi Andy, In the latest sandbox build (2025.4.6668), this can now be controlled using the new rowDragHandleVisibility property. The supported values are "Hover", "HoverVisible", and "TouchVisible". In...
React Scheduler > Display splitter but disable splitter resizing
Answered: Hi Andy, In the latest sandbox build (2025.4.6665), this is now supported by the new rowHeaderResizing property (you need to set it to false).
DayPilot Pro for Javascript - Trial License 60 Day Limit
Answered: Yes, the standard trial period is 60 days. To ask for an extension, please contact sales@daypilot.org.
Click to create an event in inline edit mode instead of pop up modal?
Answered: Yes, this is possible - take a look at the inline event editing feature. It includes a sample onTimeRangeSelected handler that creates a new event using an inline edit box.