Answered: The bubble can be configured using a DayPilot.Bubble object which you assign to "bubble" property of the config. Example: config: any = { bubble: new DayPilot.Bubble({ animation: "fast" }), // ... } ...
Are there event hooks that can be latched into for when an event or resource is unloaded from the dom? It looks like I can hook into when they are loaded into the dom via the onBefore___Render events...
Answered: The tooltip is automatically turned off if you turn on a bubble. In the latest DayPilot Pro version, the bubble is now automatically turned on (a new DayPilot.Bubble() object is assigned to "bubble" ...
Answered: You can use the following events to detect a tree node state change: https://api.daypilot.org/daypilot-scheduler-onresourceexpand/ https://api.daypilot.org/daypilot-scheduler-onresourcecollapse/
Answered: This problem is fixed now in the latest sandbox build (8.4.5897): https://mvc.daypilot.org/sandbox/Calendar/ A new release will be available in a couple of days.
Answered: Hi! I answer my own question. In the calendar.component.ts, on the createdClosed function there is an error: createClosed(args) { /* This function gets called twice, first args is undefined, the seco...
Answered: The event tooltip is enabled by default (ShowToolTip property is set to true). The default tooltip uses the event text (loaded from the field specified using DataTextField). You can also customize it...
Answered: Yes, but I recommend using the JavaScript version: 1. The Java version is only licensed for use with the integrated Java backend. This make the JavaScript version more future-proof. 2. The JavaScript...
We use a lot of the async functionality of the scheduler, and utilize the AfterRenderJavaScript property to handle loading of the controls on the page after a callback. However, after updating to the...
Answered: There are two ways to approach it: 1. Create an on-the-fly composite id for the child resources - this is what you do. 2. Create a unique record for every job-pour type link in the database and use t...
Answered: Unfortunately the IE compatibility view is not supported. It's an obsolete IE mode that doesn't support modern technologies. Its main purpose was to reproduce bugs and limitations of IE7 and previous...
Hi, I want to change font and localization of day of week at header of Daypilot lite Calendar. First, I tried to increase font size at header by changing DayFontSize at the DISPLAY section of the Day...
Answered: The original data object is available as DayPilot.Event.data property (see also https://api.daypilot.org/daypilot-event-data/ ). Most event handlers make DayPilot.Event object available as args.e, so...
I want to change the Date and time position of Daypilot calender from horizontal to vertical. here is the link: https://code.daypilot.org/17910/html5-event-calendar-open-source Thanks
Answered: You can try sending a different JSON response. This code sends just a string: "OK" This was not considered a valid JSON text in the original JSON spec and older implementations (older browsers, older...
Answered: There are two versions of DayPilot: DayPilot Lite (open-source) https://javascript.daypilot.org/lite/ DayPilot Pro (commercial) https://javascript.daypilot.org/try/ This tutorial ( https://code.daypi...
Answered: At this moment, the modal dialog is not fully responsive. However, it adjusts itself according to the page so it doesn't overflow the current viewport. You can also adjust the position by setting the...
Answered: In the Lite version, it's not possible to adjust the overlapping behavior. It uses a fixed mode that corresponds to "Full" arrangement mode in the Pro version: https://doc.daypilot.org/calendar/event...
I am implementing DayPilot scheduler with drag and drop functionality which works fine with external mouse but when I'm trying to drag and drop my events using touch then it is not functioning as des...
Answered: This doesn't work because the HTML doesn't get compiled using Angular. It looks like it might be possible to support it in the future it looks like it would also add a lot of overhead (the time heade...
Answered: Please note that the special ASP.NET Core version of the Scheduler is now on hold. I recommend using the JavaScript version - it works with an ASP.NET Core backend just fine. There is a tutorial avai...
Answered: The ASP.NET Core version of DayPilot is now on hold - please see my reply here: https://forums.daypilot.org/Topic.aspx/3983/click-event You can use DayPilot Lite for JavaScript which includes Calenda...
Answered: The open-source version doesn't include any built-in UI mechanism for deleting events (compare with the options available in the Pro version - https://doc.daypilot.org/calendar/event-deleting/ ). I r...
Answered: The Scheduler works with an idealized timezone that is based on UTC. It mean all dates need to be supplied without the timezone specification. If you specify the timezone it will be used to convert t...
Hi I am new to Day Pilot Scheduler. I have referred this link https://code.daypilot.org/54503/angularjs-timesheet-tutorial-javascript-php here this link has both javascript (angularjs) and PHP for me...
Hi, We have used makeDraggable function and set keepElement: true as we have to use same item multiple rows. When i dragged the same item twice and moved or resized the item.One item disappears. Plea...