Skip to content
DayPilot

DayPilot Pro for ASP.NET WebForms 7.1

Release date: October 1, 2012 (build 2695)

Features

CSS Theme Designer (Scheduler)

scheduler css theme designer

You can design your own CSS theme (for CssOnly mode) using an online WYSIWYG designer:

Active Areas for Events (Scheduler)

scheduler active areas event

Custom active areas for events (BeforeEventRender/e.Areas).

Demo:

Active Areas for Resources (Scheduler)

scheduler active areas resources

Custom active areas for resource headers (BeforeResHeaderRender/e.Areas).

Demo:

Active Areas for Events (Calendar)

calendar active areas event

Custom active areas for events (BeforeEventRender/e.Areas).

Demo:

Active Areas for Column Headers (Calendar)

calendar active areas header

Custom active areas for column headers (BeforeHeaderRender/e.Areas).

Demo:

Crosshair (Calendar)

Crosshair = Header

calendar crosshair header

Crosshair = Full

calendar crosshair full

Demo:

System.Globalization.Calendar Support (Scheduler)

Example

protected void Page_Load(object sender, EventArgs e)
{
  DayPilotScheduler1.DateTimeFormatInfo = new CultureInfo("ja-jp", false).DateTimeFormat;
  DayPilotScheduler1.DateTimeFormatInfo.Calendar = new JapaneseCalendar();

  int year = DayPilotScheduler1.Calendar.GetYear(DateTime.Today);
  DayPilotScheduler1.StartDate = new DateTime(year, 1, 1, DayPilotScheduler1.Calendar);
  DayPilotScheduler1.Days = DayPilotScheduler1.Calendar.GetDaysInYear(year);

  // ...
}

Demo:

Windows 8 Theme (Scheduler)

scheduler windows 8 theme

Demo:

Duration Bar in CssOnly Mode (Scheduler)

scheduler duration bar css theme

Demo:

Percent Complete (Scheduler)

scheduler percent complete

Demo:

Header Height Auto-Fit (Calendar)

calendar header height auto fit

Demo:

Time Header Cell Duration (Calendar)

calendar time header cell duration

Demo:

Active Areas for Events (Month)

month active areas events

Demo:

Implemented