All Questions

Divide on minutes i attached the screen short.

Answered: You can customize the hour header using TimeHeaderCellDuration property: http://doc.daypilot.org/calendar/time-header-cell-duration/

Disable context menu item & Dynamic context menu

Answered: #1 Since build 1591 you can use "disabled" attribute of a menu item. Please see the updated jsfiddle: http://jsfiddle.net/jLLck2sz/2/ #2 There is no context menu for grid cells, only for time range s...

rows.filter() while onEventMoving()

Answered: Unfortunately it's not possible to use the filter in onEventMoving because the filter() method causes a refresh of the Scheduler (and it disrupts the current drag and drop operation). Also calling an...

How to allow overlapping only for some events

I have a set of tasks some of them are deleted but will remain displayed on the scheduler so I want to allow overlapping only for them which mean I can add a task overlapped with a deleted one

Left click Bug

Hi to all, I just encountred a strange bug while playing with my scheduler ; I accidently cleft clicked on an empty cell of the scheduler and all the events were gone ! Why and how to fix it

Fix the upper Resource? (2nd try)

Answered: Unfortunately there is no quick solution other than using two Schedulers. However, this is just a workaround and may not work in all cases. <div id="dp1"></div> <div id="dp2"></div> <script> var dp1 ...

Forbidd Events Overlapping

Answered: Please make sure that you are using an up-to-date CSS theme. Older themes may not include the *_shadow_overlap CSS class that is used to highlight the forbidden position. You can create a new theme i...

Change row height

Answered: You can set the height of all events in a row using BeforeResHeaderRender event handler/e.EventHeight property. If there are no events in that row this will make the height of that row equal to the e...

Event Background color

Answered: The code for setting custom event background color should look like this: protected void DayPilotCalendar1_BeforeEventRender(object sender, BeforeEventRenderEventArgs e) { e.BackgroundColor = (string...

Event bubble missing - Event Calendar javascript

Answered: There are three problems with the fiddle: 1. You need to add bubble property to the config: bubble: new DayPilot.Bubble(), 2. Don't call .init() if you are using the jQuery plugin. The .init() method...

Unexpected Number When Opening Add Event Dialog

Answered: You need quotes around the parameters so it produces something like this: timeRangeSelected('4/13/2015 12:00:00 AM', '4/19/2015 12:00:00 AM', '106'); Try this: page.ClientScript.RegisterStartupScript...

Replace Open Source DLL with Trial DLL breaks app

When my DayPilot reference points to DayPilot Lite (version 5.0.302), and I run the project, I see DayPilot Scheduler rendered on the page. When I change the reference to the Trial version of DayPilo...

Pass additional data to makeDraggable

Answered: Build 1736 now copies all properties of the makeDraggable parameter (except of "duration" and "element") to the newly created DayPilot.Event.data property (which is accessible in onBeforeEventRender ...