Questions Tagged feature
Does the DayPilot Scheduler respect WCAG 2.0?
I want to include Accessibility in this, please let me know is it provide or not.
Need an ability to update individual Row without updating the control - dp.Update()
Answered: Please see my reply here: https://forums.daypilot.org/question/4786/change-the-height-of-the-row-without-firing-events-for-all-
Korean language support
Answered: Korean locale ("ko-kr") is now added in the latest sandbox build (2019.3.3983).
Add popover on click of event on schedule calendar (JS / Angular 2+)
Answered: Please see the following tutorial that explains how to display a bubble with custom content (defined as static HTML, dynamic HTML loaded from the server, and as an Angular component): https://code.da...
Add a new panel to be able to drop events to
Answered: Yes, it's been in the queue for some time already. Before it's implemented, the following approach might work: Instead of dragging the whole event, you can insert a custom element into the event that...
Using font-awesome icons in the context menu
Answered: Yes, it's possible. Just use the "icon" property to specify the CSS classes:
var dp = new DayPilot.Scheduler("dp", {
// ...
contextMenu: new DayPilot.Menu({
items: [
{ text: "User ...
Dynamically update Navigator
Answered: I'm not sure if this is what you are looking for but the Navigator supports highlighting busy days (days with events) out of the box. You can supply the an array with events in the same format that i...
position selected event on the center of view port when zoom in/out
Answered: You can scroll to a specified position using scrollTo() method: https://api.daypilot.org/daypilot-scheduler-scrollto/ You can get the selected event using multiselect.events(): https://api.daypilot.o...
Keyboard Control for DayPilot/W3C Accessibility Standards
Are there any current plans for making the daypilot calendar interface keyboard accessible to W3C standards?
DayPilot.Scheduler.onEventResizing missing alt/ctrl modifiers
Answered: I realized now that in documentation even onEventMoving does not have those modifiers documented, but has them when i am debugging, hope that helps.
Render Angular component into DayPilotMonth event
Answered: The onDomAddEvent and onDomRemoveEvent event handlers are not yet supported in all components. In the DayPilotMonth component it's now available since 2019.1.3594 (use the latest sandbox version - ht...
Disabled cells for DayPilot.Calendar
Answered: Yes, it's in the plan - it will be introduced in one of the coming releases.
DayPilot Gantt - Export Client-Side
Answered: Hi Andrea, Gantt client-side export is in the works - it will be available in the near future.
Scheduler with Sortable Columns for Javascript
Answered: There is a tutorial in the works that will show how to sort rows using the column headers in the JavaScript version. It will be published at https://code.daypilot.org - you can subscribe to email not...
Showing tasks on group level
Answered: Hi Nikola, I see. It's possible to use parents as well. Some examples use "treePreventParentUsage: true" setting to disable the parent rows but the default it to enable drag and drop for all rows. Se...
Disable cells previous to the current datetime
Answered: Unfortunately, DayPilot Lite doesn't support disabled cells. However, you can check the dates in onEventMove, onEventResize, and onTimeRangeSelect events handlers and call args.preventDefault() to ca...
Ability to adapt to the user timezone
Answered: Unfortunately, automatic time zone handling is not supported at the moment. This is a desirable feature but it's not trivial and it's in the research phase now. I can't promise any delivery date at t...
Hourly rental and next reservation times
Answered: When event overlap protection is enabled (https://doc.daypilot.org/scheduler/event-overlaps/) the Scheduler will block times with existing events. If you want to use this mechanism to block 5 minutes...
Histogram support
Answered: Unfortunately a histogram is not available at the moment. There is a similar feature that you might be able to use to display the resource utilization/overbooking: https://javascript.daypilot.org/dem...
calculation
If I want to add a calculation can you show me how? I downloaded the full booking system but for my school project, the system should have some sort of a calculation!
Database
I have done everything and yet no error but when I insert a data, it does not show in my database. Please help. Thank you
Render Angular 5 component into DayPilotMonth cell template
Is is possible to render a angular component into DayPilotMonth cell template html? I'm trying to pass nativeElement as HTML attribute, but it doesn't work. Only renders "[object HTMLElement]". onBef...
Calendar - area definition by Start() & End()
Answered: Petr, It's in the plan for the next release (coming in 14 days), please stay tuned!
Undefined Variable
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 ...
Version Lite
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...
FirstDayOfWeek
Answered: The Lite version uses the first day of week that is read from the current Culture. It works automatically for ViewType="Week". You can also display custom number of days (Days property) starting at c...
Month problem
What if our project has many tasks throughout a couple of months. How can I show the diff tasks on the same chart although they're on different months?
Possibility of an automated reminder
Answered: This needs to be done on the server side. DayPilot focuses on the UI and it doesn't include support for sending emails.