Active Questions
How to make data refresh when selecting different week on Navigator?
Answered: You need to reload the data source in Command event handler (where you change the dates according to the selected date received from the Navigator).
protected void DayPilotScheduler1_Command(object...
Navigator month selected
I have a DayPilotNavigator hooked up to a DayPilotMonth control that's displaying a month. When I select a new month from the navigator, the calendar is updating as expected. But, I also have a liter...
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...
How to highlight entire selected month of Navigator
Answered: You can set the mode using SelectMode property: http://doc.daypilot.org/navigator/select-mode/
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"/>
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...
Events can't span more than one week
I'm running into a problem with events that span through one week into the next. Using your online demo, create an event on a Tuesday and resize it to span to Friday. Next, move the event so the star...
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...
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["...
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.
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...
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 ...
End Date Incorrect - Too Long When Selecting, Too Short When Rendering
Answered: Since v7.9 (http://javascript.daypilot.org/daypilot-pro-for-javascript-7-9/) there is an option to treat the end date as date only: http://api.daypilot.org/daypilot-scheduler-eventendspec/ At this mo...
How can i clear the content of daypilot scheduler version 7.9
Answered: This issue seems to be related to the timeline only. You can see this exception if the timeline is empty, i.e. when Days is set to 0 or if you hide all columns (http://doc.daypilot.org/scheduler/hidi...
offset end date
Answered: The dates are interpreted as exact time points, i.e. when the start date is set to 01.01.2014 it means 2014-01-01T00:00:00, the end date 03.01.2014 means 2014-01-03T00:00:00. The difference between t...
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 pos...
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.
Daypilot calendar recurring events support "every x monday of the month" ?
Answered: Unfortunately such rules are not supported by RecurrenceRule class at the moment. The only solution is to pass the occurrences expanded in the datasource.