Skip to content
DayPilot

DayPilot Pro for ASP.NET WebForms 8.1

Planned release date: July 13, 2015 (build 8.1.3443)

Features

Task Versions (Gantt Chart)

asp.net gantt chart task versions

Demo

Active Areas for Time Headers (Scheduler)

Active Areas for Grid Cells (Scheduler)

Example:

protected void DayPilotScheduler1_BeforeCellRender(object sender, DayPilot.Web.Ui.Events.BeforeCellRenderEventArgs e)
{
  e.Areas.Add(new Area().Start(e.Start.AddHours(2)).Top(0).Height(20).End(e.End.AddHours(-2)).BackgroundColor("red").Visible());
}

Time-Positioned Active Areas (Scheduler)

You can use Start()/End() methods instead of Left()/Right()/Width().

Example:

protected void DayPilotScheduler1_BeforeCellRender(object sender, DayPilot.Web.Ui.Events.BeforeCellRenderEventArgs e)
{
  e.Areas.Add(new Area().Start(e.Start.AddHours(2)).Top(0).Height(20).End(e.End.AddHours(-2)).BackgroundColor("red").Visible());
}

Minimal Cell Width in Auto Cell Width Mode (Scheduler)

CellWidthMin property, default value 1 (pixels)

Only applicable in CellWidthSpec="Auto" mode.

Active Areas for Touch Devices (Scheduler)

Supported actions:

Supported devices

Improvements

Fixes