Click here to Skip to main content
15,867,330 members
Articles / Productivity Apps and Services / Sharepoint / SharePoint 2013

Event Calendar Listing Web Part (SharePoint 2013)

Rate me:
Please Sign up or sign in to vote.
4.75/5 (19 votes)
5 Jul 2014CPOL5 min read 119.1K   3.7K   18   45
A SharePoint compact widget style calendar

 

Introduction

For use in Microsoft SharePoint 2013, this Event Calendar Listing Web Part displays events (or any calendar list) in a compact widget style calendar. It supports views and offers ajax support with rollover tooltip behaviour.

Background

I was inspired by CodeProject article Calendar Web Part for Sharepoint that Displays & Gives Details of Events from an Event List in building this Web Part. It is based on the same idea that SharePoint calendar events are shown in a custom calendar Web control that inherits from the standard ASP.NET Calendar Web control. My design goal is to make the Web Part more flexible, efficient and visually appealing.

Description

The EventCalendarListWebPart Web Part calls two custom Web controls, EventCalendar and EventListing, to render events.

EventCalendar is a custom Web control that inherits from System.Web.UI.WebControls.Calendar. Days with events are rendered in Selected style with rollover tooltip showing a list of events on that particular day. The tooltip uses Dynamic Web Coding's JavaScript Tooltips. When user mouse hovers an event title, a tooltip showing the event start and end time is shown.

In EventCalendar, events are fetched from a calendar list using a SPQuery as follows:

XML
<span id="ArticleContent"><Where>
    <DateRangesOverlap>
        <FieldRef Name="EventDate" />
        <FieldRef Name="EndDate" />
        <FieldRef Name="RecurrenceID" />
        <Value Type="DateTime"><Month /></Value>
    </DateRangesOverlap>
</Where> </span>

The above query retrieves all events that occur on days shown in the current calendar view, not just the current or selected month. So it may include the last few days of the previous month and/or the first few days of the next month. When a custom calendar view is specified, the view's query will be used instead. This custom view should be based on the Calendar view type. In the overridden event OnDayRender, the control will check if any of the retrieved events fall on the day and render the necessary child controls appropriately.

EventListing is a custom Web control that shows upcoming events in a list format. It fetches events from a calendar list using a SPQuery as follows:

XML
<span id="ArticleContent"><Where>
    <DateRangesOverlap>
        <FieldRef Name="EventDate" />
        <FieldRef Name="EndDate" />
        <FieldRef Name="RecurrenceID" />
        <Value Type="DateTime"><Now /></Value>
    </DateRangesOverlap>
</Where>
<OrderBy>
    <FieldRef Name="EventDate" />
</OrderBy> </span>

Again when a custom listing view is specified, the view's query will be used instead. This custom view should be created based on the OOTB "Current Events" view.

EventCalendarListWebPart functions as a wrapper for EventCalendar and EventListing. It also wraps an <a href="http://msdn.microsoft.com/en-us/library/system.web.ui.updatepanel.aspx">UpdatePanel</a> around EventCalendar so clicking previous or next month does not cause the entire page to refresh. The web part has the following public properties:

  • SiteUrl - (Site URL) Server relative URL of the site. If left blank, current site is used.
  • ListTitle - (List Title) Name of a calendar list. Default is Calendar.
  • SiteRelativeEventItemUrl - (Site Relative URL for Event Detail Page) In some situations like in a publishing site where you have calendar lists, you may want to direct users to a custom event detail page with a consistent look and feel to the rest of the publishing site. If provided, when a user clicks on the event title, the user will be redirected to this custom page with the event item ID automatically appended to the URL as a querystring.
  • EnableAsyncUpdate - (Enable Asynchronous Update) Enabling this option will make month navigation work without full page refreshes. Experimental, may not work in all pages or browsers. Default is false.
  • ShowCalendar - (Show Calendar?) Default is true.
  • CalendarViewTitle - (Calendar View Name) Name of view based on Calendar view type.
  • FirstDayOfWeek - (First day of week) Default is Default, i.e. as specified in system setting.
  • CssClassCalendar - (CSS class name for calendar control) This is the CSS class for the outermost calendar table.
  • CssClassTitle - (CSS class name for the title heading) This is the CSS class for the part where it says March, 2014 in the title.
  • CssClassHeader - (CSS class name for the section that displays the day of the week)
  • CssClassNextPrev - (CSS class name for the next and previous month navigation elements)
  • CssClassDay - (CSS class name for the days in the displayed month)
  • CssClassEvent - (CSS class name for the days with event(s))
  • CssClassToday - (CSS class name for today's date)
  • CssClassWeekend - (CSS class name for the weekend dates)
  • CssClassOtherMonth - (CSS class name for the days that are not in the displayed month)
  • ShowListing - (Show Listing?) Default is true.
  • ListingViewTitle - (Listing View Name) Name of view based on Current Events view.
  • NumDaysInEventListing - (Number of days to show in event listing) Default is 3. Please note days with no events do not count.
  • CssClassEventListing - (CSS class name for event listing)

All JavaScript files are referenced through the use of ScriptLink while all CSS files are referenced through the use of CssRegistration.

The web part comes with following default property values which reflect the same look and feel as shown in the preview screenshot shown at the top:

  • CssClassCalendar - ecl-calendar
  • CssClassDay - ecl-day
  • CssClassEvent - ecl-event
  • CssClassToday - ecl-today
  • CssClassWeekend - ecl-weekend
  • CssClassOtherMonth - ecl-other-month
  • CssClassEventListing - ecl-listing

The Web Part also uses resource files to store all messages and property attribute UI strings. It calls a custom class that inherits WebDescriptionAttribute, WebDisplayNameAttribute or CategoryAttribute and returns a localized string from your own Resource Manager.

The sample Visual Studio 2013 Update 1 solution includes all the support files you need to build and deploy this Web Part, minus the strong name key file. It makes full use of the built-in SharePoint integration. No more third party tools or custom pre and post build scripts are needed to build the SharePoint solution file.

Installation

If you are upgrading from a previous version, please refer to Version History for any special upgrade instructions.

Open SharePoint 2013 Management Shell, add solution file QuestechSystems.SharePoint.EventCalendarList.wsp using Add-SPSolution like

Add-SPSolution 
"C:\_deployment\QuestechSystems.SharePoint.EventCalendarList.wsp"

Go to SharePoint 2013 Central Administration/System Settings/Manage farm solutions. Deploy the installed solution to selected Web applications. In the site collection where the solution is deployed, activate the Site Collection Feature Questech Systems Event Calendar Listing Web Part. After that, the Event Calendar Listing Web Part (listed under Questech Systems) should be available for you to add to pages.

Tips: To control the width of the calendar, specify a fixed width to the web part in the web part properties under Appearance.

Please note that though this Web Part is licensed under The Code Project Open License, JavaScript Tooltips is licensed separately under its own Terms of Use.

History

  • V1.2 - 2014.07.05 - Switched to Dynamic Web Coding's JavaScript Tooltips for better tooltip placement.
  • V1.1 - 2014.05.18 - Added option to turn on/off Ajax support.
  • V1.0 - 2014.03.29 - Base

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Canada Canada
A Microsoft Certified Professional Developer and Technology Specialist.

Experience and expertise in SharePoint 2016 / 2013 / 2010 / 2007.

Role ranges from a developer in a multi-person team to a solution consultant with expert-level skills, leading a project to completion status.

Proven experience working effectively in a team environment and a self-managed environment.

Comments and Discussions

 
QuestionDoes the 2013 solution work for 2016 Pin
Wa Alm1-Dec-22 8:11
Wa Alm1-Dec-22 8:11 
QuestionFantastic Solution Pin
Member 1454673231-Jul-19 4:48
Member 1454673231-Jul-19 4:48 
QuestionNot displaying outlook events from SharePoint calendar Pin
Member 1401434622-Nov-18 0:54
Member 1401434622-Nov-18 0:54 
QuestionSharepoint Online (2013) Pin
Member 867192926-Apr-16 6:36
Member 867192926-Apr-16 6:36 
GeneralMy vote of 5 Pin
Patrick_101015-Feb-16 23:34
Patrick_101015-Feb-16 23:34 
QuestionAlignment problem Pin
Member 1220256016-Dec-15 23:30
Member 1220256016-Dec-15 23:30 
QuestionProduction Systems went down looking for QuestechSystems.SharePoint.EventCalendarList.en-US.resx Pin
Member 1221187716-Dec-15 6:51
Member 1221187716-Dec-15 6:51 
QuestionGood Article Pin
PrakasitLasree8-Nov-15 15:58
professionalPrakasitLasree8-Nov-15 15:58 
QuestionSharePoint OFfice365 Pin
Member 1208944726-Oct-15 16:03
Member 1208944726-Oct-15 16:03 
QuestionCustom Colouring Pin
Member 1181146721-Oct-15 23:27
Member 1181146721-Oct-15 23:27 
AnswerRe: Custom Colouring Pin
Member 1454673231-Jul-19 5:48
Member 1454673231-Jul-19 5:48 
QuestionWhen I hover over the date with event it does not show the event Pin
Member 1190446526-Aug-15 4:34
Member 1190446526-Aug-15 4:34 
QuestionMuchas gracias! Pin
tobalattack14-Jul-15 8:57
tobalattack14-Jul-15 8:57 
QuestionI cant get this to work in Prod.When i click the webpart in th webpart gallery i get error :An unexpected error has occurred. Pin
Patrick Olurotimi Ige28-Jun-15 20:59
Patrick Olurotimi Ige28-Jun-15 20:59 
QuestionWebpart throwing error Pin
Sheik Mohamed Dhanish.M27-May-15 20:50
Sheik Mohamed Dhanish.M27-May-15 20:50 
I am receving the error "There is no Web named "/http://XXX" Please help.
QuestionI want something more ... Pin
Hector Ignacio Varon Serrato19-May-15 10:24
Hector Ignacio Varon Serrato19-May-15 10:24 
GeneralWorks like a charm Pin
darshanakula25-Mar-15 3:51
darshanakula25-Mar-15 3:51 
QuestionHow to display events list based on chosen month Pin
Member 111509198-Jan-15 20:04
Member 111509198-Jan-15 20:04 
AnswerRe: How to display events list based on chosen month Pin
shalin113-Apr-15 3:02
shalin113-Apr-15 3:02 
QuestionUnable to deploy solution - SharePoint 2013 Pin
Member 1132298019-Dec-14 6:22
Member 1132298019-Dec-14 6:22 
GeneralMy vote of 3 Pin
Rajat Sahani13-Dec-14 0:33
Rajat Sahani13-Dec-14 0:33 
QuestionCalendar is not displayed,after adding a webpart Pin
Member 1029114221-Sep-14 21:22
Member 1029114221-Sep-14 21:22 
QuestionMini Calendar Pin
alvmad10-Sep-14 3:07
alvmad10-Sep-14 3:07 
QuestionSharePoint Online Pin
Member 110574463-Sep-14 18:47
Member 110574463-Sep-14 18:47 
QuestionInstall method was different than documented and having trouble linking to calendar Pin
Mirona (Mia) Constantinescu13-Aug-14 13:55
Mirona (Mia) Constantinescu13-Aug-14 13:55 

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.