All Questions

Multiple timezone view of Scheduler

Answered: Provided that all dates are GMT you can add a secondary time header that will display another time zone. Just override onBeforeTimeHeaderRender and update the HTML as needed. The limitation is that t...

How to show the short date m/d in the week and month view

Answered: You can define the date format using TimeHeaders: http://doc.daypilot.org/scheduler/time-header-rows/ And you can also customize the time header HTML using BeforeTimeHeaderRender: http://doc.daypilot...

DayPilot:DayPilotScheduler bug?

Answered: You need to modify the event handler as follows: protected void DayPilotScheduler1_BeforeResHeaderRender(object sender, BeforeResHeaderRenderEventArgs e) { DataItemWrapper task = e.DataItem; int dura...

Text Margin for Time

Answered: This property (EventTextLeftIndent) is only used when CssOnly is set to false. The position of the time text is fixed and can't be changed. The solution would be to switch to CssOnly = true and add t...

IE 8 + 11 Problem: No Events

Answered: It looks like the problem is the timeline. As far as I can see the time header doesn't include any cells. You can check whether this is a display-only issue by checking dps.itline array in the consol...

Different Colours for events in Scheduler

Answered: Something like this works in c#: protected override void OnBeforeEventRender(BeforeEventRenderArgs e) { if (Boolean.Parse(e.Tag["CheckedIn"])) e.BackgroundColor = "#9FF59F"; if (Boolean.Parse(e.Tag["...

2013 Demo gets an error

Answered: It's fixed in the latest release (7.9 SP3): http://mvc.daypilot.org/daypilot-pro-for-asp-net-mvc-7-9-sp3/ The medium trust level setting is now removed from web.config: <trust level="Medium"/>

Current time in Scheduler

Answered: I solved this with Seperators ( http://doc.daypilot.org/scheduler/separators/ ) dp.separators = [{color: "Green", width: 2, location: new DayPilot.Date()}]; dp.update(); setInterval(function () { dp....

Resource Header Click

Answered: After further tests, I found that there is no problem with the Resource Header Click if I use Google Chrome instead of IE8 as the browser. So, it seems that ResourceHeaderClick event is not supported...

How to change border end of each day?

Hi, We are using DayPilot in once of our Web applications. What we need is in the scheduler view change the right or left border of each cell at the end or start of the day. So that users can clearly...

Javascript Scheduler Rows Auto Height

Answered: Unfortunately, it's not possible to stretch the row height automatically because it's based on the event box height and the number of overlapping events. However, it's possible to use heightSpec = "M...

Last cell has no right border.

Answered: It's now fixed in the latest sandbox build (7.9.1384): http://javascript.daypilot.org/sandbox/scheduler/ An official SP release will be available early next week.

Display Hours as header or (Hours and Days)

Hi, I currently have a scheduler for a sight, but I'm having a hard time as to how can I show Time per day(24hours) as well as days in a week both in X axis. >daypilotplanner.aspx This is my current ...

Prevent moving between resources

Answered: You should set .moveVDisabled property of the event to true: http://doc.daypilot.org/scheduler/limit-event-moving/ You can do it directly in event data object or using onBeforeEventRender event handl...

Message-Bar not disappearing completely

Answered: Daniel, I confirm the bug. It's fixed now in build 7.9.1312: http://javascript.daypilot.org/sandbox/ It can be tested in the JS console: dp.message("one"); setTimeout(function() {dp.message("two");},...

post value send

Answered: You can pass a custom object as the third parameter but it will be sent in the body serialized to a JSON string: DayPilot.request(url, successCallback, postObject); If you need to send custom post pa...

CommandCallBack on Mac/iPad

Answered: Adding the following config part under <system.web> element will solve the problem. <browserCaps> <filter> <case match="AppleWebKit/600"> EcmaScriptVersion=1.5 supportsCallback=true </case> </filter>...

BusinessHours

Answered: The HeightSpec = BusinessHoursNoScroll is not available in the MVC Lite version at the moment. Most likely, it will be added in the next release.

scalehours in 30 minutes

Answered: In the Scheduler, you can use the following to get 30-minute time slots: dp.scale = "CellDuration"; dp.cellDuration = 30; See also: http://doc.daypilot.org/scheduler/scale/ http://doc.daypilot.org/sc...