Top Banner
Andy Huneycutt Customizing the Calendar App in SharePoint
32

Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

May 06, 2018

Download

Documents

hoangdien
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Andy Huneycutt

Customizing the Calendar App

in SharePoint

Page 2: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Overview

• The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers a simple interface to create single events, or repeating events, as well as overlaying multiple calendars using color coding. But is that all the calendar is capable of?

• In this session we’ll discuss how to custom the out of the box calendar to meet the needs of your business. With a few modifications and custom tweaks, it’s possible to create a calendar that’s both functional and eye-catching.

• Did I mention this is all within a single calendar?

Page 3: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

How?

• Creating calendar views to filter by event category.

• Creating calendar overlays to represent event categories using colors.

• Using a custom color palette in place of the default color palette.

• Adding custom content types to the calendar for unique events.

• Known issues.

Page 4: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendars in SharePoint

Page 5: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar Overlays

Page 6: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar Overlays

Page 7: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar Overlay limitations

• 10 calendar limit

• Uses default color palette – Dark teal

– Dark blue

– Dark green

– Olive green

– Red

– Dark purple

– Dark teal

– Dark green

– Brown

• Default columns based on the Event content type – Title

– Location • Single line of text

– Start Time

– End Time

– Description

– Category • Choice menu

• Fill in value

– All Day Event

– Recurrence

Page 8: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Customized Calendar

Page 9: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Columns + Views + Overlays

Page 10: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Columns and Views

Page 11: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Create a Calendar View

Page 12: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar View Settings

Page 13: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar View Filters

Page 14: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar Overlay

Page 15: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar Overlay Settings

Page 16: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar Overlay Settings

Page 17: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar Overlay Settings

Page 18: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Calendar Overlay Settings

Page 19: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

NAVY #001f3f

BLUE #0074D9

AQUA #7FDBFF

TEAL #39CCCC

OLIVE #3D9970

GREEN #2ECC40

LIME #01FF70

YELLOW #FFDC00

ORANGE #FF851B

Default calendar color palette

DARK TEAL #00485B

DARK BLUE #0072C6

DARK GREEN #288054

OLIVE GREEN #767956

RED #ED0033

DARK PURPLE #682A7A

DARK TEAL #006984

DARK GREEN #134029

BROWN #3B3C2A

Custom calendar color palette

Customize calendar colors

Page 20: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

CSS

<style type="text/css">

.ms-acal-color1{

BACKGROUND-COLOR: #001f3f}

.ms-acal-selcolor1{

BACKGROUND-COLOR: #001f3f}

.ms-acal-apanel-color1{

BORDER-COLOR: #C3B7AC; BACKGROUND-COLOR: #001f3f;}

Page 21: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Content Editor or Script Editor web

part?

Page 22: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

DEMO

Customizing the Calendar App in SharePoint

Page 23: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Event Content Type

Page 24: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Event Content Type

Page 25: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Site Columns

Page 26: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Site Content Types

Page 27: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Event Content Type

Page 28: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

DEMO

Customizing the Calendar App in SharePoint

Page 29: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

QUESTIONS

Customizing the Calendar App in SharePoint

Page 30: Customizing the Calendar App in SharePoint - ASPE … · Overview • The calendar app is a useful tool to track events for teams in SharePoint. Out of the box the calendar offers

Andy Huneycutt Microsoft Certified Trainer, MCITP, MCTS

• ASPE Trainer

• Courseware Developer

• Consultant

• SharePoint

• Project Server

• Office 365

[email protected]

• Twitter - @andyhuneycutt | LinkedIn – William Huneycutt