Active Questions
Using quarters or months for CellDuration rather than days, hours, or mins etc.
Answered: In the Calendar, the maximum CellDuration is 60 (minutes). In the Scheduler, you can set it to whatever you want but it will be the same for all cells. That means it will not be practical for months ...
Problem with DayPilotCalendar hosting on server
Answered: I suggest taking a look at the page HTML source. There is a JavaScript block that initialized DayPilotCalendar. It looks like this:
<script type='text/javascript'>
/* DayPilotPro: 6.5.2299.0 */
f...
... Show events in the mont view with rounded corners and other Google-like stylings?
Answered: It's now possible to use rounded event corners in the Month control as well: http://www.daypilot.org/demo/Month/RoundedCorners.aspx See also: http://www.daypilot.org/daypilot-pro-6-4.html
Change the Back Color of Month Calendar on selected dates
Answered: You can use BeforeCellRender event handler:
protected void DayPilotMonth1_BeforeCellRender(object sender, DayPilot.Web.Ui.Events.Month.BeforeCellRenderEventArgs e)
{
if ...
Scheduler show bubble on event click
Answered: The EventClickHandling="Bubble" option was not supported. It's now enabled in build 6.5.2300. You can also add EventHoverHandling="Disabled" to turn off hover bubble action. See also: http://www.dayp...
Scheduler - cell mouseover resource and time headers shaded with custom color
Answered: You can use CrosshairColor and CrosshairOpacity properties.
New HeightSpec value
Answered: In the 6.5 release (http://www.daypilot.org/daypilot-pro-6-5.html), it will be possible to specify the displayed hours range independently of the business hours and HeightSpec using DayBeginsHour and...
Schedule - misalignment resources and header sharepoint 2007 DayPilot 6.4
Answered: Don't you have the zoom set to something else than 100%? If that wasn't the problem, could you please send me the output HTML of that page to support@daypilot.org? http://kb.daypilot.org/55640/saving...
Repeat Events
Answered: Recurrence is supported since 6.0 release: http://www.daypilot.org/daypilot-pro-6-0.html See also a tutorial for DayPilot Calendar: http://www.daypilot.org/calendar-tutorial-recurrent-events.html
Event Bubble render client side
Answered: It's possible to set the bubble HTML in advance so it isn't loaded from the server using BeforeEventRender event handler (use e.StaticBubbleHTML property).
protected void DayPilotMonth1_BeforeE...
Reccurence problem in month view
Answered: You should move the first event so it matches the rule, please see also here: http://forums.daypilot.org/Topic.aspx/1376/reccurence-problem-in-week-view
Reccurence problem in week view
Answered: The recurrence is designed this way. The first event is always fixed and the following occurrences are generated using the rule. You can update the start date of this first event to match the rule (i...
How to reflect changes in the database to DayPilotCalendar using callback.
Answered: It looks like you aren't reloading the data in the server-side event handler. You have two controls, with ClientObjectName values of "dpc1" and "dpc2". If you want to refresh both of them, call: dpc1...
Getting Start Time and End Time in Day / Week View
Answered: You might want to take a look here: http://www.daypilot.org/scheduler-time-range-selecting.html This article is about the Scheduler control but the other controls work the same way. Here is a KB tuto...
Order of display for events in Scheduler Resource Mode
Answered: You can user EventSortExpression property to specify order of overlapping events. See also here: http://www.daypilot.org/daypilot-pro-6-2-sp3.html
Loading label for Daypilot month
Answered: I've added it to the wishlist. It might appear in the 6.5 release: http://www.daypilot.org/daypilot-pro-6-5.html
How add images to eventboxes
Answered: Harshad, Not sure if this is exactly what you're looking for, but you can do something like this in _BeforeEventRender: e.InnerHTML = "<img src='img.png' onclick='alert(this)' />" + e.Tag["evt_nm"];
Scheduler HeightSpec=Parent100Pct problem
Answered: This option is working properly since 6.3 release: http://www.daypilot.org/daypilot-pro-6-3.html
Testing and message for attempt to create new event before current time and date
Answered: It depends on how you are creating a new event. If it's directly on TimeRangeSelected it could look like this:
TimeRangeSelectedHandling="JavaScript"
TimeRangeSelectedJavaScript="check(start, end,...