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().

  • time headers
  • events
  • grid cells

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:

  • Move
  • ResizeStart
  • ResizeEnd
  • ContextMenu

Supported devices

  • iOS
  • Android

Improvements

  • [Calendar] HeaderHeightAutoFit = true works with HeaderLevels > 1 (Calendar). (build 3414)
  • CssOnly demos removed (the legacy CssOnly="false" mode not supported anymore). (build 3415)
  • Task version supports CssClass, ToolTip, HtmlLeft, HtmlRight. (build 3420)
  • SelectedRows can be set during initial page load (Gantt). (build 3428)
  • [Calendar] Calendar.VisibleStart, VisibleEnd properties. (build 3429)
  • [Scheduler] Syncing timeline (Scale = Manual) during callbacks (Scheduler). (build 3434)
  • Task versions synchronized for SyncTasks = true (Gantt). (build 3439)
  • Gantt: LinkPointSize property added. (build 3440)

Fixes

  • Bubble default theme fixed (build 3416)
  • [Scheduler] Custom event height fixed (build 3416)
  • [Scheduler] Image export background color fixed (Scheduler). (build 3421)
  • [Scheduler] Column HTML export fixed (Scheduler). (build 3422)
  • [Scheduler] Scheduler/BeforeEventRender/e.EventDeleteEnabled fixed. (build 3430)
  • [Scheduler] Scheduler/Gantt task/event version positions updated correctly on node toggle. Versions with dates outside of the grid fixed. (build 3437)