Click here to Skip to main content
15,867,568 members
Articles / Web Development / HTML

DayPilot - Building an Outlook-Like Calendar Component for ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.86/5 (120 votes)
8 May 2016Apache5 min read 472.9K   9K   391   89
A good-looking ASP.NET control that shows events visually arranged in a day calendar. Includes design-time support and data binding.

Image 1

ASP.NET MVC Version

See also the follow-up articles:

These articles introduce a new DayPilot version for ASP.NET MVC which supports drag & drop AJAX operations (event moving, resizing, and creating).

HTML5/JavaScript Version

DayPilot Lite is also available for HTML5/JavaScript:

The latest release includes AngularJS event calendar [code.daypilot.org] plugin.

Building an Outlook-Like Calendar Component for ASP.NET

The story is simple and you might have already heard it: I needed a component and because I wasn't able to find a good one I decided to write it. I was thinking like this: It would take me two hours to find it, another two hours to understand it and another two hours to customize it. Six hours. In six hours, I should be able to write a simple component by myself.

Features

  • Reusable ASP.NET component for showing the events in day/week/work week views.
  • HTML5 support
  • Full CSS-based styling.
  • Supports all modern browsers (Chrome, Firefox, Internet Explorer, Edge, Safari, Opera).
  • Visual Studio 2010/2012/2013/2015
  • Azure support
  • Internationalization support (automatic date and time formatting, 12/24 clock support).
  • Accepts data in many forms, including a DataTable, List, and other collections of custom objects.
  • Support for database backends (Microsoft SQL Server, MySQL, etc.)
  • Simple mapping of data object fields (DataStartField, DataEndField, DataIdField, DataTextField).
  • User-defined JavaScript/server-side action for clicking the event.
  • User-defined JavaScript/server-side action for clicking the free time.
  • Support for business hours - doesn't show the time outside the working hours unless there is an event.
  • Support for events started before or finish after the current day.
  • Support for overlapping events (two or more events for a particular moment).
  • Commercial-friendly open-source license (Apache Software License 2.0)

Algorithm for Arranging Concurrent Events

The following mechanism is used to arrange the events:

  • "Event" class will keep the basic information about the event, like starting and ending time, title, etc.
  • "Day" class will keep all the events for a certain day. It will be able to load the events from a DataTable. Each day can contain zero or more Blocks.
  • "Block" class will contain events that overlap with one another. Each Block contains one or more Columns.
  • "Column" class will contain all the events inside a Block that can be in a single Column.

Let's demonstrate it visually:

Image 2

The algorithm can be described in the following steps:

  1. Shorten all the Events so that they don't overlap to another day (e.g. if something starts yesterday, let's make it start today at 00:00).
  2. Extend the Events' duration to 30 minutes blocks (we would have problems showing a duration of 5 minutes, 5 seconds - it wouldn't be possible to write any text into a rectangle of such a small height).
  3. Find Blocks:
    • Order all the events by the starting time (primary) and by the ending time in reverse (secondary) - longer events go closer to the left.
    • Iterate through the events - if it overlaps with the previous add it to the current Block; otherwise create a new Block.
  4. Arrange Events into Columns inside a Block (do this for each Block):
    • Find a moment with the most overlaps and count the overlaps. Create that many numbers of Columns.
    • Arrange Events into Columns - find the first free Column from the left and place it there.

Now, we can calculate the position of each Event because we know the Blocks and Columns:

  • Left: (the column number)/(total count of columns for the owner block) in percent.
  • Width: 1/(total count of columns) in percent
  • Top: (starting time)*(hour height)
  • Height: (duration)*(hour height)

Quick-Start Example

ASP.NET Control Declaration (.aspx)

<DayPilot:DayPilotCalendar ID="DayPilotCalendar1" runat="server" 
        DataTextField="name" 
        DataIdField="id" 
        TimeFormat="Clock12Hours" 
        DataStartField="Start" 
        DataEndField="End" 
        Days="7" 
        NonBusinessHours="Hide" 
        onbeforeeventrender="DayPilotCalendar1_BeforeEventRender"
        EventClickHandling="JavaScript"
        TimeRangeSelectedHandling="JavaScript"
        
        CssOnly="true"
        CssClassPrefix="calendar_transparent"
        >
        </DayPilot:DayPilotCalendar> 

Loading data (.aspx.cs)

protected void Page_Load(object sender, EventArgs e)
{
  if (!IsPostBack)
  {
      DayPilotCalendar1.StartDate = firstDayOfWeek(DateTime.Now, DayOfWeek.Sunday);
      DayPilotCalendar1.DataSource = getData();
      DataBind();
  }
}

More information about event loading [doc.daypilot.org].

See also the DayPilot Tutorial for a step-by-step setup guide.

Scheduler (3.0)

Image 3

DayPilot Lite 3.0 supports Scheduler ASP.NET control that allows you to display a scheduler for multiple resources side-by-side.

See also:

Gantt Chart (3.2)

Image 4

DayPilot Lite 3.2 supports Gantt Chart ASP.NET control (displaying one task per line).

See also:

CSS Theme Styling (4.0)

Image 5

DayPilot Lite 4.0 supports full calendar and scheduler CSS styling.

You can design your own CSS theme in the online theme designer:

Built-In CSS Theme (4.1)

Image 6

DayPilot Lite 4.1 includes a built-in CSS theme. The CssOnly mode (full calendar CSS styling mode) is now enabled by default. The calendar default CSS theme can be displayed without any external dependencies.

Drag and Drop (5.0)

Image 7

DayPilot Lite for ASP.NET WebForms 5.0 [daypilot.org] now supports calendar drag and drop:

  • event moving
  • event resizing
  • time range selecting

Source and binary available for download [daypilot.org].

NuGet Package

DayPilot Lite is also available as a NuGet package:

History

License

This article, along with any associated source code and files, is licensed under The Apache License, Version 2.0


Written By
Czech Republic Czech Republic
My open-source event calendar/scheduling web UI components:

DayPilot for JavaScript, Angular, React and Vue

Comments and Discussions

 
QuestionParsing error Pin
Willem_Le_Roux4-May-06 22:54
Willem_Le_Roux4-May-06 22:54 
AnswerRe: Parsing error Pin
Dan Letecky14-May-06 4:08
Dan Letecky14-May-06 4:08 
GeneralConcurrent events Pin
hillBillyDLX23-Mar-06 0:11
hillBillyDLX23-Mar-06 0:11 
GeneralRe: Concurrent events Pin
Dan Letecky12-Apr-06 6:09
Dan Letecky12-Apr-06 6:09 
GeneralRe: Concurrent events Pin
Dan Letecky14-May-06 4:04
Dan Letecky14-May-06 4:04 
GeneralIny Meny Miny mo Pin
AnasHashki21-Mar-06 22:41
AnasHashki21-Mar-06 22:41 
GeneralRe: Iny Meny Miny mo Pin
Dan Letecky14-May-06 4:05
Dan Letecky14-May-06 4:05 
GeneralDynamic loading...postback Pin
atilston21-Mar-06 3:28
atilston21-Mar-06 3:28 
GeneralRe: Dynamic loading...postback Pin
Dan Letecky14-May-06 4:06
Dan Letecky14-May-06 4:06 
Questionproblem showing up event Pin
kohyeehuei4-Mar-06 5:41
kohyeehuei4-Mar-06 5:41 
AnswerRe: problem showing up event Pin
Dan Letecky14-May-06 4:07
Dan Letecky14-May-06 4:07 
QuestionRe: problem showing up event Pin
obinna_eke8-Oct-06 22:24
obinna_eke8-Oct-06 22:24 
GeneralDayPilot 1.1 Released Pin
Dan Letecky3-Feb-06 12:27
Dan Letecky3-Feb-06 12:27 
GeneralProblem with databind Pin
kevinof2-Feb-06 10:48
kevinof2-Feb-06 10:48 
GeneralRe: Problem with databind Pin
Dan Letecky3-Feb-06 12:24
Dan Letecky3-Feb-06 12:24 
GeneralRe: Problem with databind Pin
ali zarei sani24-Mar-06 10:00
ali zarei sani24-Mar-06 10:00 
QuestionWhen is the new version going to be released? Pin
dimkasta1-Feb-06 22:47
dimkasta1-Feb-06 22:47 
AnswerRe: When is the new version going to be released? Pin
Dan Letecky1-Feb-06 22:50
Dan Letecky1-Feb-06 22:50 
QuestionWindows version? Pin
Rom200015-Jan-06 15:10
Rom200015-Jan-06 15:10 
GeneralPostback Pin
Matthew Hazlett2-Jan-06 17:10
Matthew Hazlett2-Jan-06 17:10 
GeneralRe: Postback Pin
Matthew Hazlett2-Jan-06 17:12
Matthew Hazlett2-Jan-06 17:12 
GeneralRe: Postback Pin
Dan Letecky3-Jan-06 7:29
Dan Letecky3-Jan-06 7:29 
GeneralVersion 1.0.3 Released Pin
Dan Letecky2-Jan-06 2:46
Dan Letecky2-Jan-06 2:46 
GeneralVersion 1.0.2 Released Pin
Dan Letecky28-Dec-05 12:48
Dan Letecky28-Dec-05 12:48 
GeneralEvents always show up at BusinessStartingHour Pin
stephg12327-Dec-05 5:08
stephg12327-Dec-05 5:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.