Released on July 30, 2009 (build 1870).
The separators (DayPilot Scheduler) now have a few more appearance properties:
Example above:
// Red separator with 50% opacity placed at the current day with width equal to CellWidth, shown above events
DayPilotScheduler1.Separators.Add(DateTime.Today, Color.Red, SeparatorLayer.AboveEvents, DayPilotScheduler1.CellWidth, 50);
It's now possible to start a day at any hour (other than 00:00) in DayPilot Calendar.
Just set the DayBeginsHour property:
DayBeginsHour="6"
The column length will still be 24 hours but the first visible hour will be 6 AM.
In BeforeEventRender, it's possible to define the bubble content in advance. If e.StaticBubbleHTML is assigned, it will be used for the bubble content. The bubble will not contact the server in that case.
protected void DayPilotCalendar1_BeforeEventRender(object sender, BeforeEventRenderEventArgs e)
{
if (e.Value == "3")
{
e.StaticBubbleHTML = "Static ToolTip";
}
}
DayPilot Navigator