Hi, in daypilot calendar and for visibility reasons, I need to open a pop up for "start time" during event moving, automatically updated while moving; how can I do that? Is there a "onEventMoving" (or similar) propertie?
I'm using Angular version, I configure my calendar in that way
eventHoverHandling: "Bubble",
bubble: new DayPilot.Bubble({....}),
the problem is that "hover" event is fired only when the mouse is over an "event" and not when the mouse is over a cell: how can I configure that?
Comment posted by Dan Letecky [DayPilot] 4 years ago.
The "bubble" property specifies an event bubble - for cells, you need to use "cellBubble":
config: DayPilot.CalendarConfig = {
cellBubble: new DayPilot.Bubble({....}),
// ...
}
Comment posted by Andrea R. 4 years ago.
I tried as indicated but it doesn't seem to work, when I move the mouse over the cells they are highlighted by changing color but the bubble does not open.
Is there any check I can do on the calendar to understand why the event is not triggered?
Thank you so much for the support
Comment posted by Dan Letecky [DayPilot] 4 years ago.
You can try placing a breakpoint in the onLoad event of the bubble to see if it is fired.
The onLoad event handler is necessary - there is no default content and if you don't specify args.html in onLoad the bubble won't open.
what I noticed is that when I position myself on a cell, the indicator does not change, while when I position myself on an event, the indicator changes (from arrow to hand)
Comment posted by Dan Letecky [DayPilot] 4 years ago.