All Questions

Overlapping events mode

Answered: You can find the overlapping event arrangement options here: https://doc.daypilot.org/calendar/event-arrangement-mode/

What determines if an Event is shown?

Answered: Each column uses two key properties: id start The basic rule is that event.start must be within the specified day (column.start) and the event.resource must match the column id (column.id). Plus: 1. ...

Apply style sheet in sheduler

Answered: The Scheduler marks the important elements with custom CSS classes (the names are derived from the theme names). You can find the list here: https://kb.daypilot.org/62119/list-of-css-classes-used-in-...

Following Event Editing example, but id is incorrect

Answered: I solved this. The documentation is incorrect for ASP.NET Web Forms. It tells you to use the following code: EventClickHandling="JavaScript" EventClickJavaScript="editEvent(e.id);" But this doesn't w...

Active drop-area in Calendar

Answered: You can use the real-time event handlers to check custom conditions: https://api.daypilot.org/daypilot-scheduler-oneventmoving/ https://api.daypilot.org/daypilot-scheduler-oneventresizing/ https://ap...

Resource Bubble no longer working

Answered: I confirm the bug. It's already fixed in the latest sandbox build (8.4.3627): https://aspnet.daypilot.org/sandbox/ There will be a new release available shortly. Let me know if the problem persists.

getting selected events

Answered: This seems to work fine for me: var dp = new DayPilot.Scheduler("dp"); // ... dp.onEventMove = function (args) { var selectedEvents = dp.multiselect.events(); }; dp.init(); If it still doesn't work, ...

Custom Tag - how to?

Answered: Your second example seems to work fine for me (in both AngularJS and plain JavaScript version). Just a couple of comments: 1. As you have noticed already, dataTagFields is not used in the JavaScript ...

Restrict the event to one week

Answered: You can customize the drag and drop operations using the real-time events: https://api.daypilot.org/daypilot-scheduler-oneventmoving/ https://api.daypilot.org/daypilot-scheduler-oneventresizing/ http...

Apply theme to scheduler

Answered: All themes (except of the embedded "scheduler_default" theme) are defined in separate css files which need to be included in the HTML page. You can find the themes in "demo/themes" directory of the d...

Angular 4+, event multi select

Answered: Yes, it is supported in Angular as well. In Angular, you just need to specify the properties and event handlers on the "config" object instead of DayPilot.Scheduler object. All features work the same...

Angular 4+ Bubble stuck on screen

Answered: That should be fixed now in the latest release (8.4.3058): https://javascript.daypilot.org/daypilot-pro-for-javascript-8-4-sp6/ Let me know if the problem persists.

Need Information

Answered: Please see the PDF export tutorials at code.daypilot.org: https://code.daypilot.org/76551/html5-scheduler-paged-pdf-export https://code.daypilot.org/73551/html5-scheduler-pdf-export-javascript

Getting Error Msg

Answered: thanks for your reply.. currently we are using IE 10 will check the code and get back..

Set the working time shown

Answered: You probably mean the "Hiding Non-Business Hours" feature of the Scheduler: https://doc.daypilot.org/scheduler/hiding-non-business-hours/ You can show weekends by setting businessWeekends property to...

The request must start with 'JSON' string.

I working on a web application written in ASP.NET MVC 5 with Razor. When i publish website in IIS it throws the error "The request must start with JSON string". Someone who can help me? My View: @Htm...

AutoRefresh Interval

Answered: 1. The default AutoRefreshMaxCount value is set to 20. That means it will stop calling the Refresh event after that number. This limit is introduced intentionally - calling any JavaScript code repeat...

Place the event on where we drag

Answered: When you click on a grid cell or select a range using drag and drop the Scheduler fires onTimeRangeSelect and onTimeRangeSelected events which you can use to create a new event at that location. See ...

Free to use

Answered: Yes, DayPilot Lite is available under Apache License 2.0 - it's free and open-source. See also: https://aspnet.daypilot.org/open-source/