SlideShare a Scribd company logo
1 of 27
S
Awesomely Simple
SharePoint Solutions
April Dunnam
Lead SharePoint Consultant/Developer
About Me
• 7+ years SharePoint and development
experience
• Senior Consultant/Developer at ThriveFast
• Born and bread Okie
• Active in Tech Community, VP of Tulsa
SharePoint User Group
• Blogger, speaker
@aprildunnam
www.sharepointsiren.co
m
www.thrivefast.com
Agenda
S To Code or Not to Code?
S What is jQuery?
S What can you do with jQuery in SharePoint?
S Simple Solutions
S Demos
To Code or Not to Code?
S Out-of-the-box features
will get you 80% of what
you need
S For the other 20% it’s
time to bring in some
code
What is jQuery?
S JavaScript Utility Library
S Fully supported in SharePoint
S Lets you do Client Side Development in SharePoint
S Download at https://jquery.com/download
S Upload to SharePoint Site Assets Folder for easy
reference
What can you do with jQuery
in SharePoint?
S Show/Hide Elements
S Get/Set Field Values
S Pull info from other lists/sites
S Dashboards
S Datatables, dialogs, graphs, charts
Solution #1 – Promoted Links
S Solves the “I can’t find what I need” problem
S Visual Navigation = convenient and appealing
Solution #2 –
Welcome Message
S Solves the “SharePoint isn’t personable” problem
S Pulls Logged in User’s Name and Time of Day for
Custom Welcome Message
S Free Web Part. Download here:
http://www.amrein.com/apps/page.asp?Q=5834
Solution #3 –
Announcements Rotator
S Helps to communicate info out to employees
S BrightBanner – Free Content Rotator App in App Store
S Or create your own with jQuery/SPServices/Bootstrap
Solution #4 –
Birthdays/Anniversaries
S Showing Employee Birthdays/Anniversaries draws users in and
encourages camaraderie.
S $125 WebPart from Amrein:
http://www.amrein.com/apps/page.asp?Q=5787
S Or
S Free Apps in App Store
Solution #5 - Weather
S CELGO Weather C – Free App in SharePoint 2013 App
Store
S Can use to show weather at multiple company locations
S Or insert jQuery script from any of the major weather
websites (Yahoo Weather, Weather Channel, etc)
Solution #6 - Filtered Views
S Helps you create dynamic dashboards
S [Me] Filter or [Today] Filter
Solution #7 - Filtered Lookup
Column
S Consider this scenario:
S You have a Jobs Lists with a Job Name field
and Job Status that marks .
S You have a Task List that you want to create
a Lookup field that pulls all Active Jobs from
the Jobs List
S Create a new Calculated Column
in the Jobs List called “ActiveTitle”.
Insert the following formula and
reference this calculated column in
your lookup field
S
Demo:
Filtered Lookup Column
Solution #8 - Audience
Targeting
S Target
WebParts/Content to
specific groups of
people
S Ex: Show different
announcements
depending on current
user’s department
Solution #9 – SharePoint Blog
S Simple Knowledge Base Solution
S Easy to set up
S Categories
S Searchable
Solution #10 – Hide the
“Recent” Heading
S No Code Option: Audience Targeting
S Create an empty SharePoint Permission Group
S Go to Site Settings -> Navigation
S Find the Recent Header Element - > Click Edit
S Put the name of the empty permission group in the audience
S Caveat: Must complete these steps on each site
S
Demo:
Hide Recent Heading
Solution #10 – Hide the
“Recent” Heading
S Code Option: jQuery
S Insert the following snippet in your Master Page ** This
will hide the Recent on all sites/subsites
<script src="http://code.jquery.com/jquery-latest.min.js"
type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".ms-core-listMenu-
item:contains('Recent')").parent().hide();
});
</script>
Solution #11 - Disable Mobile
View
S Site Settings  Site Features
S De-Activate “Mobile Browser View”
S Reasons to do this:
S 1. Responsive design eliminates need for SP default mobile
view
S 2. Mobile View can be confusing to navigate
Solution #12 – Default
Calendar Events to All Day
S Download jQuery.min and upload to SharePoint.
S Insert Script Editor Webpart in New Form of Calendar.
Put the following code in the script editor:
Solution #13 – Add Link to
Home Page on MySites
S Powershell to the rescue!
cls;
Add-PSSnapin "Microsoft.SharePoint.Powershell"
$webApp = Get-SPWebApplication
http://mycompanymysiteurl.com
$webApp.SuiteBarBrandingElementHtml = "<div class='ms-core-
brandingText'><a href='http://mycompanyintranet.com/'
style='color:white'>My Company Intranet Name</a></div>"
$webApp.Update()
Solution #14 - Hide the Left Nav
S Simple as adding a line of css
S Insert a script editor webpart on the page you want to
hide the left nav on. Paste in the following code:
<style type="text/css">
#sideNavBox {DISPLAY: none}
#contentBox {MARGIN-LEFT: 0px}
</style>
Solution #15 - Auto Populate
People Picker
S jQuery & SPServices: https://spservices.codeplex.com
S Insert a content editor webpart on the New Item Form of the List. Paste in the following
code:
<script type="text/javascript" src="/SiteAssets/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="/SiteAssets/jquery.SPServices-2014.02.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
//Get the current user
var user= $().SPServices.SPGetCurrentUser();
$().SPServices.SPFindPeoplePicker({
peoplePickerDisplayName: "Employee",
valueToSet: user,
checkNames: true
});
});
</script>
Solution #16 – Org Chart
S Use when the Built-in Org Chart isn’t cutting it
S https://github.com/Aymkdn/OrgChart-JS-Sharepoint
Solution #17– Search-Driven
Company Directory
S Utilize Search Display
Templates to create a
Company Directory that
pulls from SharePoint
User Profiles
S Reference:
http://www.sharepointco
nfig.com/2013/05/how-
to-create-a-simple-
sharepoint-2013-
people-directory/
S
Thank You!
@aprildunnam
www.sharepointsiren.co

More Related Content

What's hot

Next Level PowerApps
Next Level PowerAppsNext Level PowerApps
Next Level PowerAppsApril Dunnam
 
Next Level PowerApps SPS St Louis
Next Level PowerApps SPS St LouisNext Level PowerApps SPS St Louis
Next Level PowerApps SPS St LouisApril Dunnam
 
Powering Up SharePoint Forms with PowerApps
Powering Up SharePoint Forms with PowerAppsPowering Up SharePoint Forms with PowerApps
Powering Up SharePoint Forms with PowerAppsApril Dunnam
 
PowerApps, Forms, Flow, oh my!
PowerApps, Forms, Flow, oh my!PowerApps, Forms, Flow, oh my!
PowerApps, Forms, Flow, oh my!April Dunnam
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technologyjoelsef
 
Intro to PowerApps and Flow
Intro to PowerApps and FlowIntro to PowerApps and Flow
Intro to PowerApps and FlowApril Dunnam
 
Powering the Modern Classroom with PowerApps & PowerBI
Powering the Modern Classroom with PowerApps & PowerBIPowering the Modern Classroom with PowerApps & PowerBI
Powering the Modern Classroom with PowerApps & PowerBIApril Dunnam
 
How to build SharePoint 2013 Killer Apps
How to build SharePoint 2013 Killer AppsHow to build SharePoint 2013 Killer Apps
How to build SharePoint 2013 Killer AppsMaarten Visser
 
Oracle application express ppt
Oracle application express pptOracle application express ppt
Oracle application express pptAbhinaw Kumar
 
InfoPath alternatives and the potential of PowerApps
InfoPath alternatives and the potential of PowerAppsInfoPath alternatives and the potential of PowerApps
InfoPath alternatives and the potential of PowerAppsMaarten Visser
 
Technical Overview of Microsoft SharePoint Online - Presented by Atidan
Technical Overview of Microsoft SharePoint Online - Presented by AtidanTechnical Overview of Microsoft SharePoint Online - Presented by Atidan
Technical Overview of Microsoft SharePoint Online - Presented by AtidanDavid J Rosenthal
 
#OCSPUG SharePoint 2013 Best Practices
#OCSPUG SharePoint 2013 Best Practices#OCSPUG SharePoint 2013 Best Practices
#OCSPUG SharePoint 2013 Best PracticesIvan Sanders
 
The Future of SharePoint - What You Need to Know
The Future of SharePoint - What You Need to KnowThe Future of SharePoint - What You Need to Know
The Future of SharePoint - What You Need to KnowEric Overfield
 
Getting started with SharePoint 2013 online development
Getting started with SharePoint 2013 online developmentGetting started with SharePoint 2013 online development
Getting started with SharePoint 2013 online developmentJeremy Thake
 
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem.
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem. SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem.
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem. Kushan Lahiru Perera
 
Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...
Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...
Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...Corey Roth
 
From Trashy to Classy: How The SharePoint 2013 App Model Changes Everything
From Trashy to Classy: How The SharePoint 2013 App Model Changes EverythingFrom Trashy to Classy: How The SharePoint 2013 App Model Changes Everything
From Trashy to Classy: How The SharePoint 2013 App Model Changes EverythingAndrew Clark
 
Social computing with share point 2010
Social computing with share point 2010Social computing with share point 2010
Social computing with share point 2010Andrew Clark
 

What's hot (20)

Next Level PowerApps
Next Level PowerAppsNext Level PowerApps
Next Level PowerApps
 
Next Level PowerApps SPS St Louis
Next Level PowerApps SPS St LouisNext Level PowerApps SPS St Louis
Next Level PowerApps SPS St Louis
 
Powering Up SharePoint Forms with PowerApps
Powering Up SharePoint Forms with PowerAppsPowering Up SharePoint Forms with PowerApps
Powering Up SharePoint Forms with PowerApps
 
PowerApps, Forms, Flow, oh my!
PowerApps, Forms, Flow, oh my!PowerApps, Forms, Flow, oh my!
PowerApps, Forms, Flow, oh my!
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
 
Intro to PowerApps and Flow
Intro to PowerApps and FlowIntro to PowerApps and Flow
Intro to PowerApps and Flow
 
Powering the Modern Classroom with PowerApps & PowerBI
Powering the Modern Classroom with PowerApps & PowerBIPowering the Modern Classroom with PowerApps & PowerBI
Powering the Modern Classroom with PowerApps & PowerBI
 
How to build SharePoint 2013 Killer Apps
How to build SharePoint 2013 Killer AppsHow to build SharePoint 2013 Killer Apps
How to build SharePoint 2013 Killer Apps
 
Access Web Apps E-Book
Access Web Apps E-BookAccess Web Apps E-Book
Access Web Apps E-Book
 
Oracle application express ppt
Oracle application express pptOracle application express ppt
Oracle application express ppt
 
InfoPath alternatives and the potential of PowerApps
InfoPath alternatives and the potential of PowerAppsInfoPath alternatives and the potential of PowerApps
InfoPath alternatives and the potential of PowerApps
 
Technical Overview of Microsoft SharePoint Online - Presented by Atidan
Technical Overview of Microsoft SharePoint Online - Presented by AtidanTechnical Overview of Microsoft SharePoint Online - Presented by Atidan
Technical Overview of Microsoft SharePoint Online - Presented by Atidan
 
#OCSPUG SharePoint 2013 Best Practices
#OCSPUG SharePoint 2013 Best Practices#OCSPUG SharePoint 2013 Best Practices
#OCSPUG SharePoint 2013 Best Practices
 
The Future of SharePoint - What You Need to Know
The Future of SharePoint - What You Need to KnowThe Future of SharePoint - What You Need to Know
The Future of SharePoint - What You Need to Know
 
Getting started with SharePoint 2013 online development
Getting started with SharePoint 2013 online developmentGetting started with SharePoint 2013 online development
Getting started with SharePoint 2013 online development
 
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem.
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem. SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem.
SharePoint Framework -The future of SharePoint/ Office 365 developer ecosystem.
 
Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...
Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...
Office 365 - Introduction to SharePoint Online Development - SharePoint Conne...
 
From Trashy to Classy: How The SharePoint 2013 App Model Changes Everything
From Trashy to Classy: How The SharePoint 2013 App Model Changes EverythingFrom Trashy to Classy: How The SharePoint 2013 App Model Changes Everything
From Trashy to Classy: How The SharePoint 2013 App Model Changes Everything
 
Social computing with share point 2010
Social computing with share point 2010Social computing with share point 2010
Social computing with share point 2010
 
SharePoint for Beginners
SharePoint for BeginnersSharePoint for Beginners
SharePoint for Beginners
 

Viewers also liked

24 perkara sebelum bina website anda
24 perkara sebelum bina website anda24 perkara sebelum bina website anda
24 perkara sebelum bina website andaShamshul Kamar
 
Presentación
PresentaciónPresentación
PresentaciónAntoniori
 
Social Constructivism
Social ConstructivismSocial Constructivism
Social ConstructivismAmy McMahon
 
Teknik Pemasaran Email - Masa Yang Sesuai Untuk Menghantar Email
Teknik Pemasaran Email - Masa Yang Sesuai Untuk Menghantar EmailTeknik Pemasaran Email - Masa Yang Sesuai Untuk Menghantar Email
Teknik Pemasaran Email - Masa Yang Sesuai Untuk Menghantar EmailShamshul Kamar
 
Email Formula- Sense of Urgency
Email Formula- Sense of Urgency Email Formula- Sense of Urgency
Email Formula- Sense of Urgency Shamshul Kamar
 
24 Perkara Sebelum Bina Website Anda
24 Perkara Sebelum Bina Website Anda24 Perkara Sebelum Bina Website Anda
24 Perkara Sebelum Bina Website AndaShamshul Kamar
 
Metlife clp plan new one by onne
Metlife clp plan new one by onneMetlife clp plan new one by onne
Metlife clp plan new one by onneIshtiaq Khan
 
Presentasi ..kognosi..
Presentasi ..kognosi..Presentasi ..kognosi..
Presentasi ..kognosi..Zenisa Amalia
 
New microsoft office word document (2)
New microsoft office word document (2)New microsoft office word document (2)
New microsoft office word document (2)Vũ Thị Nga
 
Social Constructivism
Social ConstructivismSocial Constructivism
Social ConstructivismAmy McMahon
 
Talking Rock Look Book
Talking Rock Look BookTalking Rock Look Book
Talking Rock Look BookTalking Rock
 
AFFILIATE MARKEING - BAGAIMANA BERMULA
AFFILIATE MARKEING - BAGAIMANA BERMULAAFFILIATE MARKEING - BAGAIMANA BERMULA
AFFILIATE MARKEING - BAGAIMANA BERMULAShamshul Kamar
 

Viewers also liked (19)

RECETA DE COMIDA
RECETA  DE COMIDARECETA  DE COMIDA
RECETA DE COMIDA
 
24 perkara sebelum bina website anda
24 perkara sebelum bina website anda24 perkara sebelum bina website anda
24 perkara sebelum bina website anda
 
Presentación
PresentaciónPresentación
Presentación
 
Why school
Why schoolWhy school
Why school
 
Tausif Ahmed Rossi
Tausif Ahmed RossiTausif Ahmed Rossi
Tausif Ahmed Rossi
 
docente del siglo xxi
docente del siglo xxidocente del siglo xxi
docente del siglo xxi
 
Rpp kelas x
Rpp kelas xRpp kelas x
Rpp kelas x
 
Social Constructivism
Social ConstructivismSocial Constructivism
Social Constructivism
 
Teknik Pemasaran Email - Masa Yang Sesuai Untuk Menghantar Email
Teknik Pemasaran Email - Masa Yang Sesuai Untuk Menghantar EmailTeknik Pemasaran Email - Masa Yang Sesuai Untuk Menghantar Email
Teknik Pemasaran Email - Masa Yang Sesuai Untuk Menghantar Email
 
Email Formula- Sense of Urgency
Email Formula- Sense of Urgency Email Formula- Sense of Urgency
Email Formula- Sense of Urgency
 
24 Perkara Sebelum Bina Website Anda
24 Perkara Sebelum Bina Website Anda24 Perkara Sebelum Bina Website Anda
24 Perkara Sebelum Bina Website Anda
 
Marco normativo CBTa 289
Marco normativo CBTa 289Marco normativo CBTa 289
Marco normativo CBTa 289
 
Metlife clp plan new one by onne
Metlife clp plan new one by onneMetlife clp plan new one by onne
Metlife clp plan new one by onne
 
Presentasi ..kognosi..
Presentasi ..kognosi..Presentasi ..kognosi..
Presentasi ..kognosi..
 
New microsoft office word document (2)
New microsoft office word document (2)New microsoft office word document (2)
New microsoft office word document (2)
 
Social Constructivism
Social ConstructivismSocial Constructivism
Social Constructivism
 
Talking Rock Look Book
Talking Rock Look BookTalking Rock Look Book
Talking Rock Look Book
 
AFFILIATE MARKEING - BAGAIMANA BERMULA
AFFILIATE MARKEING - BAGAIMANA BERMULAAFFILIATE MARKEING - BAGAIMANA BERMULA
AFFILIATE MARKEING - BAGAIMANA BERMULA
 
VirendraResume
VirendraResumeVirendraResume
VirendraResume
 

Similar to Tulsa TechFest 2015 Awesomely Simple SharePoint Solutions

IE9 for developers
IE9 for developersIE9 for developers
IE9 for developersShaymaa
 
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy DewMake SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy DewCathy Dew
 
Going from Classic to Modern. 10 Things you must know before you commit
Going from Classic to Modern. 10 Things you must know before you commitGoing from Classic to Modern. 10 Things you must know before you commit
Going from Classic to Modern. 10 Things you must know before you commitspsnyc
 
Spsat nyc19 190621150118
Spsat nyc19 190621150118Spsat nyc19 190621150118
Spsat nyc19 190621150118Peter_1020
 
Custom SharePoint 2010 solutions without server access
Custom SharePoint 2010 solutions without server accessCustom SharePoint 2010 solutions without server access
Custom SharePoint 2010 solutions without server accessPhil Wicklund
 
Sp sat philly2019
Sp sat philly2019Sp sat philly2019
Sp sat philly2019Peter_1020
 
SharePoint 2013 Preview
SharePoint 2013 PreviewSharePoint 2013 Preview
SharePoint 2013 PreviewRegroove
 
SAPUI5 & OpenUI5 for SAP InnoJam
SAPUI5 & OpenUI5 for SAP InnoJamSAPUI5 & OpenUI5 for SAP InnoJam
SAPUI5 & OpenUI5 for SAP InnoJamDenise Nepraunig
 
Introduction to using jQuery with SharePoint
Introduction to using jQuery with SharePointIntroduction to using jQuery with SharePoint
Introduction to using jQuery with SharePointRene Modery
 
Developing branding solutions for 2013
Developing branding solutions for 2013Developing branding solutions for 2013
Developing branding solutions for 2013Thomas Daly
 
Relearning SharePoint Development
Relearning SharePoint DevelopmentRelearning SharePoint Development
Relearning SharePoint Developmentbgerman
 
2013 SPFest - Customizing Sites and Pages in SharePoint 2013
2013 SPFest - Customizing Sites and Pages in SharePoint 20132013 SPFest - Customizing Sites and Pages in SharePoint 2013
2013 SPFest - Customizing Sites and Pages in SharePoint 2013Wes Preston
 
Collaboration Portal for Researchers
Collaboration Portal for ResearchersCollaboration Portal for Researchers
Collaboration Portal for ResearchersFatemeh Khast Khoda
 
#SPSTC Maximizing the SharePoint User Experience with Free 3rd Party jQuery L...
#SPSTC Maximizing the SharePoint User Experience with Free 3rd Party jQuery L...#SPSTC Maximizing the SharePoint User Experience with Free 3rd Party jQuery L...
#SPSTC Maximizing the SharePoint User Experience with Free 3rd Party jQuery L...Mark Rackley
 
Ecommerce Mini Project / Group Project Coding
Ecommerce Mini Project / Group Project CodingEcommerce Mini Project / Group Project Coding
Ecommerce Mini Project / Group Project CodingHemant Sarthak
 
Webinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration Platform
Webinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration PlatformWebinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration Platform
Webinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration PlatformEdureka!
 
AngularJS and SharePoint
AngularJS and SharePointAngularJS and SharePoint
AngularJS and SharePointdanielsmon
 
Branding SharePoint 2013
Branding SharePoint 2013Branding SharePoint 2013
Branding SharePoint 2013NIFTIT
 

Similar to Tulsa TechFest 2015 Awesomely Simple SharePoint Solutions (20)

IE9 for developers
IE9 for developersIE9 for developers
IE9 for developers
 
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy DewMake SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
Make SharePoint Look Not Like SharePoint - SPSNashville - Cathy Dew
 
Going from Classic to Modern. 10 Things you must know before you commit
Going from Classic to Modern. 10 Things you must know before you commitGoing from Classic to Modern. 10 Things you must know before you commit
Going from Classic to Modern. 10 Things you must know before you commit
 
Spsat nyc19 190621150118
Spsat nyc19 190621150118Spsat nyc19 190621150118
Spsat nyc19 190621150118
 
Custom SharePoint 2010 solutions without server access
Custom SharePoint 2010 solutions without server accessCustom SharePoint 2010 solutions without server access
Custom SharePoint 2010 solutions without server access
 
Sp sat philly2019
Sp sat philly2019Sp sat philly2019
Sp sat philly2019
 
SharePoint 2013 Preview
SharePoint 2013 PreviewSharePoint 2013 Preview
SharePoint 2013 Preview
 
SAPUI5 & OpenUI5 for SAP InnoJam
SAPUI5 & OpenUI5 for SAP InnoJamSAPUI5 & OpenUI5 for SAP InnoJam
SAPUI5 & OpenUI5 for SAP InnoJam
 
Introduction to using jQuery with SharePoint
Introduction to using jQuery with SharePointIntroduction to using jQuery with SharePoint
Introduction to using jQuery with SharePoint
 
Developing branding solutions for 2013
Developing branding solutions for 2013Developing branding solutions for 2013
Developing branding solutions for 2013
 
Relearning SharePoint Development
Relearning SharePoint DevelopmentRelearning SharePoint Development
Relearning SharePoint Development
 
Basant Resume
Basant ResumeBasant Resume
Basant Resume
 
2013 SPFest - Customizing Sites and Pages in SharePoint 2013
2013 SPFest - Customizing Sites and Pages in SharePoint 20132013 SPFest - Customizing Sites and Pages in SharePoint 2013
2013 SPFest - Customizing Sites and Pages in SharePoint 2013
 
Collaboration Portal for Researchers
Collaboration Portal for ResearchersCollaboration Portal for Researchers
Collaboration Portal for Researchers
 
#SPSTC Maximizing the SharePoint User Experience with Free 3rd Party jQuery L...
#SPSTC Maximizing the SharePoint User Experience with Free 3rd Party jQuery L...#SPSTC Maximizing the SharePoint User Experience with Free 3rd Party jQuery L...
#SPSTC Maximizing the SharePoint User Experience with Free 3rd Party jQuery L...
 
Ecommerce Mini Project / Group Project Coding
Ecommerce Mini Project / Group Project CodingEcommerce Mini Project / Group Project Coding
Ecommerce Mini Project / Group Project Coding
 
Resume
ResumeResume
Resume
 
Webinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration Platform
Webinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration PlatformWebinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration Platform
Webinar: Microsoft SharePoint-The Ultimate Enterprise Collaboration Platform
 
AngularJS and SharePoint
AngularJS and SharePointAngularJS and SharePoint
AngularJS and SharePoint
 
Branding SharePoint 2013
Branding SharePoint 2013Branding SharePoint 2013
Branding SharePoint 2013
 

Recently uploaded

Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Callshivangimorya083
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607dollysharma2066
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneCall girls in Ahmedabad High profile
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...Diya Sharma
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024APNIC
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)Damian Radcliffe
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...aditipandeya
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 

Recently uploaded (20)

Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
FULL ENJOY Call Girls In Mayur Vihar Delhi Contact Us 8377087607
 
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service ThaneRussian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
Russian Call Girls Thane Swara 8617697112 Independent Escort Service Thane
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls KolkataLow Rate Call Girls Kolkata Avani 🤌  8250192130 🚀 Vip Call Girls Kolkata
Low Rate Call Girls Kolkata Avani 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Model Towh Delhi 💯Call Us 🔝8264348440🔝
 
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 6 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
VIP 7001035870 Find & Meet Hyderabad Call Girls Dilsukhnagar high-profile Cal...
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 

Tulsa TechFest 2015 Awesomely Simple SharePoint Solutions

  • 1. S Awesomely Simple SharePoint Solutions April Dunnam Lead SharePoint Consultant/Developer
  • 2. About Me • 7+ years SharePoint and development experience • Senior Consultant/Developer at ThriveFast • Born and bread Okie • Active in Tech Community, VP of Tulsa SharePoint User Group • Blogger, speaker @aprildunnam www.sharepointsiren.co m www.thrivefast.com
  • 3. Agenda S To Code or Not to Code? S What is jQuery? S What can you do with jQuery in SharePoint? S Simple Solutions S Demos
  • 4. To Code or Not to Code? S Out-of-the-box features will get you 80% of what you need S For the other 20% it’s time to bring in some code
  • 5. What is jQuery? S JavaScript Utility Library S Fully supported in SharePoint S Lets you do Client Side Development in SharePoint S Download at https://jquery.com/download S Upload to SharePoint Site Assets Folder for easy reference
  • 6. What can you do with jQuery in SharePoint? S Show/Hide Elements S Get/Set Field Values S Pull info from other lists/sites S Dashboards S Datatables, dialogs, graphs, charts
  • 7. Solution #1 – Promoted Links S Solves the “I can’t find what I need” problem S Visual Navigation = convenient and appealing
  • 8. Solution #2 – Welcome Message S Solves the “SharePoint isn’t personable” problem S Pulls Logged in User’s Name and Time of Day for Custom Welcome Message S Free Web Part. Download here: http://www.amrein.com/apps/page.asp?Q=5834
  • 9. Solution #3 – Announcements Rotator S Helps to communicate info out to employees S BrightBanner – Free Content Rotator App in App Store S Or create your own with jQuery/SPServices/Bootstrap
  • 10. Solution #4 – Birthdays/Anniversaries S Showing Employee Birthdays/Anniversaries draws users in and encourages camaraderie. S $125 WebPart from Amrein: http://www.amrein.com/apps/page.asp?Q=5787 S Or S Free Apps in App Store
  • 11. Solution #5 - Weather S CELGO Weather C – Free App in SharePoint 2013 App Store S Can use to show weather at multiple company locations S Or insert jQuery script from any of the major weather websites (Yahoo Weather, Weather Channel, etc)
  • 12. Solution #6 - Filtered Views S Helps you create dynamic dashboards S [Me] Filter or [Today] Filter
  • 13. Solution #7 - Filtered Lookup Column S Consider this scenario: S You have a Jobs Lists with a Job Name field and Job Status that marks . S You have a Task List that you want to create a Lookup field that pulls all Active Jobs from the Jobs List S Create a new Calculated Column in the Jobs List called “ActiveTitle”. Insert the following formula and reference this calculated column in your lookup field
  • 15. Solution #8 - Audience Targeting S Target WebParts/Content to specific groups of people S Ex: Show different announcements depending on current user’s department
  • 16. Solution #9 – SharePoint Blog S Simple Knowledge Base Solution S Easy to set up S Categories S Searchable
  • 17. Solution #10 – Hide the “Recent” Heading S No Code Option: Audience Targeting S Create an empty SharePoint Permission Group S Go to Site Settings -> Navigation S Find the Recent Header Element - > Click Edit S Put the name of the empty permission group in the audience S Caveat: Must complete these steps on each site
  • 19. Solution #10 – Hide the “Recent” Heading S Code Option: jQuery S Insert the following snippet in your Master Page ** This will hide the Recent on all sites/subsites <script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script> <script type="text/javascript"> jQuery(document).ready(function() { jQuery(".ms-core-listMenu- item:contains('Recent')").parent().hide(); }); </script>
  • 20. Solution #11 - Disable Mobile View S Site Settings  Site Features S De-Activate “Mobile Browser View” S Reasons to do this: S 1. Responsive design eliminates need for SP default mobile view S 2. Mobile View can be confusing to navigate
  • 21. Solution #12 – Default Calendar Events to All Day S Download jQuery.min and upload to SharePoint. S Insert Script Editor Webpart in New Form of Calendar. Put the following code in the script editor:
  • 22. Solution #13 – Add Link to Home Page on MySites S Powershell to the rescue! cls; Add-PSSnapin "Microsoft.SharePoint.Powershell" $webApp = Get-SPWebApplication http://mycompanymysiteurl.com $webApp.SuiteBarBrandingElementHtml = "<div class='ms-core- brandingText'><a href='http://mycompanyintranet.com/' style='color:white'>My Company Intranet Name</a></div>" $webApp.Update()
  • 23. Solution #14 - Hide the Left Nav S Simple as adding a line of css S Insert a script editor webpart on the page you want to hide the left nav on. Paste in the following code: <style type="text/css"> #sideNavBox {DISPLAY: none} #contentBox {MARGIN-LEFT: 0px} </style>
  • 24. Solution #15 - Auto Populate People Picker S jQuery & SPServices: https://spservices.codeplex.com S Insert a content editor webpart on the New Item Form of the List. Paste in the following code: <script type="text/javascript" src="/SiteAssets/jquery-2.1.1.min.js"></script> <script type="text/javascript" src="/SiteAssets/jquery.SPServices-2014.02.min.js"></script> <script type="text/javascript"> $(document).ready(function() { //Get the current user var user= $().SPServices.SPGetCurrentUser(); $().SPServices.SPFindPeoplePicker({ peoplePickerDisplayName: "Employee", valueToSet: user, checkNames: true }); }); </script>
  • 25. Solution #16 – Org Chart S Use when the Built-in Org Chart isn’t cutting it S https://github.com/Aymkdn/OrgChart-JS-Sharepoint
  • 26. Solution #17– Search-Driven Company Directory S Utilize Search Display Templates to create a Company Directory that pulls from SharePoint User Profiles S Reference: http://www.sharepointco nfig.com/2013/05/how- to-create-a-simple- sharepoint-2013- people-directory/

Editor's Notes

  1. If you can draw end users in with a well-thought out Home Page and easy to find content then chances are you will have a successful SharePoint implementation.
  2. From my experience I’ve found that you can build a lot of functionality with vast amount of out-of-the-box features SharePoint has to offer. In fact, I’d say 80% of the time, you can get the solution you need by just using out-of-the-box features. But, there’s always that extra little thing….the other 20%. That’s when code comes into play. When I talk about code I’ll be focusing on client-side code using javascript.
  3. jQuery is my first-stop go-to tool for SharePoint Development these days.
  4. jQuery is my first-stop go-to tool for SharePoint Development these days. For a more in-depth look at jQuery in SharePoint be sure to stick around for Mark Rackley’s “Maximizing the SharePoint User Experience with Free Third Party jQuery Libraries” talk at 1:30.
  5. You can utilize the Top Nav and Quick Launch to organize your sites and content within them. A lesser known way to navigate is the Promoted Links List. This is a new list in SharePoint 2013 that allows you to build a more eloquent links list. You can have an image that clearly identifies what the link is, a title and a description of the link when you hover over it. This is a good tool to use on department pages to provide a visual way to navigate to important areas of your site.
  6. Having a Welcome Message on your SharePoint Home Page provides a good “warm and fuzzy” vibe for your users. This is a great way to customize the user experience. This particular webpart is very customizable. You can choose to show or hide the current logged in users picture. You can either display Good and the time of the day (morning, afternoon, evening) or just have a generic “welcome user” message. You can edit the css to edit the font of webpart, insert a background image, etc.
  7. Adding an Announcements Rotator to your Home Page gives your Page a “pop” and keeps it fresh. You can consistently update the content to show the latest news/events. It’s a great way to engage your end users.
  8. Showcasing Employee Birthday’s and Anniversaries' on your home page is a great way to increase user adoption. It draws people in and encourages camaraderie. There are some free webparts in the App Store you can use, or there is a webpart for only $125 that you can use. This particular webpart is very customizable and easy to setup.
  9. Adding Weather to your SharePoint intranets home page is a good way to draw users in. You can use this to showcase weather across all of your company’s locations. There are some pre-built apps in the app store for this. One that I like is the CELGO Weather C App which is free. It’s easy to add and customize. If you need something a little more custom, you can insert a Script Editor Webpart on your page and inject some javascript that consumes weather from any of the major weather websites such as Yahoo Weather, Weather Channel, etc.
  10. Filtered Views are useful for creating custom dashboards for your users. For example, you can use the [Me] filter to show the current user’s tasks. And you can use the [Today] filter to show tasks which are due today or overdue. Additionally, filters and Managed Metadata can be used to overcome the List View Threshold limitations that occur in SharePoint Online sites.
  11. Lookup Columns are very useful. They allow you to pull information from a SharePoint List and use it as metadata. You can utilized a Calculated Column in your source list to create a custom filtered lookup column.
  12. Audience Targeting is an often under-utilized and over-looked feature in SharePoint. A good use-case for this is targeting company announcements. In this example, there is a Foremen Group in the company who have announcements that are only applicable to them. Using Audience Targeting, you can add the Foremen Announcements webpart to your home page and set it to display only to those in the Foremen Group.
  13. OneNote is a hidden gem in SharePoint. It is fully integrated in SharePoint 2013. In fact, when you create a SharePoint 2013 Team site it automatically comes with a OneNote Notebook.
  14. SharePoint 2013 Introduce a “Recent” Heading in the Quick Launch. This was intended to dynamically show the most recently created/edit lists or libraries, however, it tends to be more of a nuisance than a benefit. Fortunately there is a relatively easy way to hide it.
  15. SharePoint 2013 Introduce a “Recent” Heading in the Quick Launch. This was intended to dynamically show the most recently created/edit lists or libraries, however, it tends to be more of a nuisance than a benefit. Fortunately there is a relatively easy way to hide it.
  16. SharePoint 2013 automatically re-directs mobile devices to a specialized Mobile view. This view is intended to simplify the user experience in mobile, however, many users still prefer the full desktop experience in mobile.
  17. In SharePoint Calendars there is a checkbox to mark an item as an “All Day Event”. This essentially hides the Start and End Dates times and marks it as an all day event. This checkbox is set to No by default. Good news is you can change that with a simply script inserted via a Script Editor Webpart on the New Form of your Calendar.
  18. In SharePoint Calendars there is a checkbox to mark an item as an “All Day Event”. This essentially hides the Start and End Dates times and marks it as an all day event. This checkbox is set to No by default. Good news is you can change that with a simply script inserted via a Script Editor Webpart on the New Form of your Calendar.
  19. In SharePoint Calendars there is a checkbox to mark an item as an “All Day Event”. This essentially hides the Start and End Dates times and marks it as an all day event. This checkbox is set to No by default. Good news is you can change that with a simply script inserted via a Script Editor Webpart on the New Form of your Calendar.
  20. In SharePoint Calendars there is a checkbox to mark an item as an “All Day Event”. This essentially hides the Start and End Dates times and marks it as an all day event. This checkbox is set to No by default. Good news is you can change that with a simply script inserted via a Script Editor Webpart on the New Form of your Calendar.
  21. Let’s face it…that handy dandy Silverlight Org Chart SharePoint gives you just doesn’t always cut it. Thankfully there are a lot of third party alternative solutions out there. This one in particular I found is free and fairly easy to set up. It is jQuery based, allows you to connect it to a list. We’ve implemented this where we do a nightly pull from Active Directory to populate the list.
  22. A common requirement on SharePoint is a company directory. All of the information needed for a directory (employee name, phone number, email, etc) is already being stored in the SharePoint User Profile Service for easy access. You can use SharePoint Search and Custom Display Templates to create a Company Directory Table. The reference provided guides you through the steps to complete and includes a download of the Display Template files to produce these results.