SlideShare une entreprise Scribd logo
1  sur  30
Eric Overfield
SharePoint Advocate and Enthusiast
PixelMill
http://pxml.ly/EO-SP-DisplayTemplates
Display Templates
Breaking Down
Introduction – Eric Overfield
 Founder and SharePoint Branding/UI Lead, PixelMill
 Speaker, Teacher, Advocate
 Author, SharePoint Community Organizer
 Located in Davis, CA
ericoverfield.com
@EricOverfield
Order Your Copy
http://pxml.ly/zsqykd
Co-author: “Pro SharePoint 2013 Branding and Responsive
Web Development” (Apress – June 12th, 2013)
Co-author: “Black Magic Solutions for
White Hat SharePoint” (August, 2013)
What You Will Learn
 What are Display Templates
 Where we use Display Templates
 Types of Display Templates
 How to create our own Display Templates
@EricOverfield - pixelmill.com
What are
Display Templates
@EricOverfield - pixelmill.com
Display Templates in a Nut Shell
 JavaScript based templates for rendering content
@EricOverfield - pixelmill.com
 Based on Client Side Rendering (CSR)
 HTML/JS rendering occurs at client side, not server side
 Replaces the need for XSLT!
 We work with HTML files, SharePoint handles most JS
 SharePoint 2013 / SharePoint Online rendering engine
@EricOverfield - pixelmill.com
Where we use
Display Templates
Display Templates are Now Everywhere
 Refiners
@EricOverfield - pixelmill.com
 Content Search Web Part
 Certain System Pages
 i.e. CSWP Query Builder, Reports, eDiscovery
 Search Results and Hover Panels
@EricOverfield - pixelmill.com
Display Template Alternatives?
 XSLT still available for server side rendering
 Must be set by exporting a Content Search Webpart
 Set “AlwaysRenderOnServer” property to true
 Sample XSLT can be found in:
/_catalogs/masterpage/Display Templates/Server Style Sheets
@EricOverfield - pixelmill.com
 Content Query Web Part still uses XSLT
@EricOverfield - pixelmill.com
Types of
Display Templates
Control Templates and Item Templates
 Control Templates (Similar to ContentQueryMain.xsl)
 Used once per query, i.e. a general wrapper
 Item Templates (Similar to ItemStyle.xsl)
 Used once per result
@EricOverfield - pixelmill.com
Finding Display Templates
 /_catalogs/masterpage/Display Templates
@EricOverfield - pixelmill.com
 Stored in Master Page Gallery
 Custom Display Template may be stored anywhere in MPG
 Just have to properly set Content Types and Properties
 Each Display Template includes a .html and a .js file
 Only customize the .html file
 Unless you choose to live dangerously…
Finding
Display Templates
@EricOverfield - pixelmill.com
Demo
Create Our Own
Display Templates
@EricOverfield - pixelmill.com
Creating a Custom Display Template
 Copy, paste and rename only the .html file
 SharePoint will handle the .js for you
@EricOverfield - pixelmill.com
 Always start from an existing Display Template
 Modify at least the <title /> tag
 Place all custom code* after the first <div>
Creating a Custom
Display Template
@EricOverfield - pixelmill.com
Demo
Display Template
Components
@EricOverfield - pixelmill.com
Breaking Down Control Templates
@EricOverfield - pixelmill.com
 <html>
 <title /> (“name” of display template)
 <body>
 <div> (only place custom code after first div)
 Include scripts / links to custom CSS
 Additional pre-rendering JavaScript including post render binding
 AddPostRenderCallback() or ctx.OnPostRender.push()
 Finally your custom display code (HTML and JavaScript)
Breaking Down Item Templates
@EricOverfield - pixelmill.com
 <html>
 <title /> (“name” of display template)
 <mso:ManagedPropertyMapping />
‘JS Reference Name’{Display Name}:’Manager Property list’;
i.e. 'Picture URL'{Picture URL}:'PublishingImage;PictureURL;'
 <body>
 <div> (only place custom code after first div)
 Additional pre-rendering JavaScript
 Finally your custom item display code (HTML and JavaScript)
Custom Control and Item
Display Templates
@EricOverfield - pixelmill.com
Demo
Search Results and Display Templates
@EricOverfield - pixelmill.com
Search Results and Display Templates
@EricOverfield - pixelmill.com
 Display Templates used for
 Refinement panels
 Search Input control
 Search results and result types
 Hover panels
 With results types, set specific item templates per item type
Search Results, Hover Panels,
Refinement Panels and
Display Templates
@EricOverfield - pixelmill.com
Demo
Debugging Display Templates
@EricOverfield - pixelmill.com
 Use browser developer toolbar or Visual Studio
 I prefer console.log(), or set breakpoints
 Binding to Visual Studio is great for long debug sessions
Debugging
Display Templates
@EricOverfield - pixelmill.com
Demo
Important JavaScript Reference
@EricOverfield - pixelmill.com
 AddPostRenderCallback(ctx, function () {});
 $getItemValue(ctx, "JS Reference Name");
 $includeScript(this.url, "~sitecollection/…/?.js");
 $includeCSS(this.url, "~sitecollection/…/?.css");
 ctx.ClientControl.get_numberOfItems(); (per page)
 ctx.DataProvider.get_totalRows(); (total rows)
 $isNull(object), $isEmptyString(string)
A Quick Review
@EricOverfield - pixelmill.com
 What are Display Templates
 Where we use Display Templates
 Types of Display Templates
 How to create our own Display Templates
Special Thanks
Corey Roth (Outstanding session from SPC 2014)
http://pxml.ly/2DF48QX
@EricOverfield - pixelmill.com
Marc Anderson (Inspiration)
http://pxml.ly/2F6U9hH
Elio Struyf (Accordion/Tab Display Template Demo Concept)
http://pxml.ly/2KDNB3R
Resources
SharePoint 2013 Design Manager display templates (MSDN)
http://pxml.ly/26P96C
Ultimate Diagnostic Display Template (CSWP) – on GitHub
http://pxml.ly/A3ANNG
Display template reference in SharePoint Server 2013 (TechNet)
http://pxml.ly/2KDNNKP
4 tips for using jQuery with SharePoint Display Templates
http://pxml.ly/3ZAD2GA
10 SharePoint display template tips and tricks
http://pxml.ly/MBVWT34
The Anatomy of SharePoint 2013 Display Templates
http://pxml.ly/U8YU94X
@EricOverfield - pixelmill.com
Useful JavaScript to know when working with SharePoint Display Templates
http://pxml.ly/ZE87BNW
Demo Source files on GitHub
http://pxml.ly/cDGtygL
Thank You
Eric Overfield
@EricOverfield
ericoverfield.com
Order Your Copy
http://pxml.ly/zsqykd
“Pro SharePoint 2013 Branding and Responsive Web Development”
(Apress – June 12th, 2013)
http://pxml.ly/EO-SP-DisplayTemplates
Display Templates
Breaking Down

Contenu connexe

En vedette

SharePoint Saturday Houston: SharePoint 2010 Extranets & Claims Authentication
SharePoint Saturday Houston: SharePoint 2010 Extranets & Claims AuthenticationSharePoint Saturday Houston: SharePoint 2010 Extranets & Claims Authentication
SharePoint Saturday Houston: SharePoint 2010 Extranets & Claims Authentication
Brian Culver
 

En vedette (19)

SharePoint Saturday Houston: SharePoint 2010 Extranets & Claims Authentication
SharePoint Saturday Houston: SharePoint 2010 Extranets & Claims AuthenticationSharePoint Saturday Houston: SharePoint 2010 Extranets & Claims Authentication
SharePoint Saturday Houston: SharePoint 2010 Extranets & Claims Authentication
 
Branding office 365 copenhagen
Branding office 365 copenhagenBranding office 365 copenhagen
Branding office 365 copenhagen
 
Microsoft Ignite 2016 In Review
Microsoft Ignite 2016 In ReviewMicrosoft Ignite 2016 In Review
Microsoft Ignite 2016 In Review
 
How design is transforming modern intranets
How design is transforming modern intranetsHow design is transforming modern intranets
How design is transforming modern intranets
 
Your SharePoint 2013 Branding Initiation
Your SharePoint 2013 Branding InitiationYour SharePoint 2013 Branding Initiation
Your SharePoint 2013 Branding Initiation
 
Office 365 branding webinar
Office 365 branding webinarOffice 365 branding webinar
Office 365 branding webinar
 
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
 
Branding office 365 Netherlands
Branding office 365 NetherlandsBranding office 365 Netherlands
Branding office 365 Netherlands
 
SharePoint Framework, React, and Office UI sps Silicon Valley
SharePoint Framework, React, and Office UI sps Silicon ValleySharePoint Framework, React, and Office UI sps Silicon Valley
SharePoint Framework, React, and Office UI sps Silicon Valley
 
How We Did It - GreatAmerica's Nontraditional Site Structure
How We Did It - GreatAmerica's Nontraditional Site StructureHow We Did It - GreatAmerica's Nontraditional Site Structure
How We Did It - GreatAmerica's Nontraditional Site Structure
 
Design Manager 2013
Design Manager 2013  Design Manager 2013
Design Manager 2013
 
Branding Office 365 SharePoint Days
Branding Office 365 SharePoint DaysBranding Office 365 SharePoint Days
Branding Office 365 SharePoint Days
 
European SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint SassyEuropean SharePoint Webinar - Make SharePoint Sassy
European SharePoint Webinar - Make SharePoint Sassy
 
Branding SharePoint from Prototype to Deployment - Workshop
Branding SharePoint from Prototype to Deployment - WorkshopBranding SharePoint from Prototype to Deployment - Workshop
Branding SharePoint from Prototype to Deployment - Workshop
 
Branding Deployment in Office 365 and SharePoint 2013/2016
Branding Deployment in Office 365 and SharePoint 2013/2016Branding Deployment in Office 365 and SharePoint 2013/2016
Branding Deployment in Office 365 and SharePoint 2013/2016
 
Branding office 365
Branding office 365Branding office 365
Branding office 365
 
Real World Add-in Development for Office365
Real World Add-in Development for Office365Real World Add-in Development for Office365
Real World Add-in Development for Office365
 
Broaden your dev skillset with SharePoint branding options
Broaden your dev skillset with SharePoint branding optionsBroaden your dev skillset with SharePoint branding options
Broaden your dev skillset with SharePoint branding options
 
Share point 2013 apps and i mean it
Share point 2013 apps and i mean itShare point 2013 apps and i mean it
Share point 2013 apps and i mean it
 

Plus de Eric Overfield

Plus de Eric Overfield (18)

The Adventures of Azure Functions and Microsoft Graph
The Adventures of Azure Functions and Microsoft GraphThe Adventures of Azure Functions and Microsoft Graph
The Adventures of Azure Functions and Microsoft Graph
 
All You Need to Know for Automated SharePoint Site Provisioning with PnP Powe...
All You Need to Know for Automated SharePoint Site Provisioning with PnP Powe...All You Need to Know for Automated SharePoint Site Provisioning with PnP Powe...
All You Need to Know for Automated SharePoint Site Provisioning with PnP Powe...
 
Use Office UI Fabric React to Build Beauty with SharePoint
Use Office UI Fabric React to Build Beauty with SharePointUse Office UI Fabric React to Build Beauty with SharePoint
Use Office UI Fabric React to Build Beauty with SharePoint
 
Uncovering the Latest in SharePoint Development
Uncovering the Latest in SharePoint DevelopmentUncovering the Latest in SharePoint Development
Uncovering the Latest in SharePoint Development
 
Supercharge Your SharePoint Framework Webpart with React
Supercharge Your SharePoint Framework Webpart with ReactSupercharge Your SharePoint Framework Webpart with React
Supercharge Your SharePoint Framework Webpart with React
 
Build Your First SharePoint Framework Webpart
Build Your First SharePoint Framework WebpartBuild Your First SharePoint Framework Webpart
Build Your First SharePoint Framework Webpart
 
Use office ui fabric react to build beauty with SharePoint
Use office ui fabric react to build beauty with SharePointUse office ui fabric react to build beauty with SharePoint
Use office ui fabric react to build beauty with SharePoint
 
Move past bootstrap and build our lightweight responsive framework w.v1.2
Move past bootstrap and build our lightweight responsive framework w.v1.2Move past bootstrap and build our lightweight responsive framework w.v1.2
Move past bootstrap and build our lightweight responsive framework w.v1.2
 
Who Needs A Developer For Automated SharePoint Provisioning
Who Needs A Developer For Automated SharePoint ProvisioningWho Needs A Developer For Automated SharePoint Provisioning
Who Needs A Developer For Automated SharePoint Provisioning
 
Branding Modern SharePoint
Branding Modern SharePointBranding Modern SharePoint
Branding Modern SharePoint
 
Shape SharePoint 2013 for Mobile
Shape SharePoint 2013 for MobileShape SharePoint 2013 for Mobile
Shape SharePoint 2013 for Mobile
 
The 2013 Design Manager - From HTML to SharePoint
The 2013 Design Manager - From HTML to SharePointThe 2013 Design Manager - From HTML to SharePoint
The 2013 Design Manager - From HTML to SharePoint
 
The Design Dilemma of Mobile and SharePoint
The Design Dilemma of Mobile and SharePointThe Design Dilemma of Mobile and SharePoint
The Design Dilemma of Mobile and SharePoint
 
Integrating Search Driven Content in SharePoint 2013/2016/O365
Integrating Search Driven Content in SharePoint 2013/2016/O365Integrating Search Driven Content in SharePoint 2013/2016/O365
Integrating Search Driven Content in SharePoint 2013/2016/O365
 
Enhance SharePoint 2013 with Responsive Web Design
Enhance SharePoint 2013 with Responsive Web DesignEnhance SharePoint 2013 with Responsive Web Design
Enhance SharePoint 2013 with Responsive Web Design
 
Enhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web DesignEnhancing SharePoint with Responsive Web Design
Enhancing SharePoint with Responsive Web Design
 
Reshaping SharePoint for Evolving Internet Devices
Reshaping SharePoint for Evolving Internet DevicesReshaping SharePoint for Evolving Internet Devices
Reshaping SharePoint for Evolving Internet Devices
 
SharePoint Branding - Change Your Look
SharePoint Branding - Change Your LookSharePoint Branding - Change Your Look
SharePoint Branding - Change Your Look
 

Dernier

Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
amitlee9823
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
kumaririma588
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
tbatkhuu1
 
DESIGN THINKING in architecture- Introduction
DESIGN THINKING in architecture- IntroductionDESIGN THINKING in architecture- Introduction
DESIGN THINKING in architecture- Introduction
sivagami49
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
home
 
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
amitlee9823
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
tbatkhuu1
 
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
amitlee9823
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
instagramfab782445
 

Dernier (20)

Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdfJordan_Amanda_DMBS202404_PB1_2024-04.pdf
Jordan_Amanda_DMBS202404_PB1_2024-04.pdf
 
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
HiFi Call Girl Service Delhi Phone ☞ 9899900591 ☜ Escorts Service at along wi...
 
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
Jigani Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Bangal...
 
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...Verified Trusted Call Girls Adugodi💘 9352852248  Good Looking standard Profil...
Verified Trusted Call Girls Adugodi💘 9352852248 Good Looking standard Profil...
 
Editorial design Magazine design project.pdf
Editorial design Magazine design project.pdfEditorial design Magazine design project.pdf
Editorial design Magazine design project.pdf
 
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
Pooja 9892124323, Call girls Services and Mumbai Escort Service Near Hotel Gi...
 
DESIGN THINKING in architecture- Introduction
DESIGN THINKING in architecture- IntroductionDESIGN THINKING in architecture- Introduction
DESIGN THINKING in architecture- Introduction
 
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
Recommendable # 971589162217 # philippine Young Call Girls in Dubai By Marina...
 
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...Top Rated  Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
Top Rated Pune Call Girls Koregaon Park ⟟ 6297143586 ⟟ Call Me For Genuine S...
 
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
VIP Model Call Girls Kalyani Nagar ( Pune ) Call ON 8005736733 Starting From ...
 
SD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptxSD_The MATATAG Curriculum Training Design.pptx
SD_The MATATAG Curriculum Training Design.pptx
 
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️call girls in Dakshinpuri  (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
call girls in Dakshinpuri (DELHI) 🔝 >༒9953056974 🔝 genuine Escort Service 🔝✔️✔️
 
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
💫✅jodhpur 24×7 BEST GENUINE PERSON LOW PRICE CALL GIRL SERVICE FULL SATISFACT...
 
Case Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, PuneCase Study of Hotel Taj Vivanta, Pune
Case Study of Hotel Taj Vivanta, Pune
 
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
Call Girls Basavanagudi Just Call 👗 7737669865 👗 Top Class Call Girl Service ...
 
Peaches App development presentation deck
Peaches App development presentation deckPeaches App development presentation deck
Peaches App development presentation deck
 
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
Whitefield Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Ba...
 
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
VVIP Pune Call Girls Hadapsar (7001035870) Pune Escorts Nearby with Complete ...
 
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
Abortion pill for sale in Muscat (+918761049707)) Get Cytotec Cash on deliver...
 
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
❤Personal Whatsapp Number 8617697112 Samba Call Girls 💦✅.
 

Breaking Down Display Templates in SharePoint 2013

  • 1. Eric Overfield SharePoint Advocate and Enthusiast PixelMill http://pxml.ly/EO-SP-DisplayTemplates Display Templates Breaking Down
  • 2. Introduction – Eric Overfield  Founder and SharePoint Branding/UI Lead, PixelMill  Speaker, Teacher, Advocate  Author, SharePoint Community Organizer  Located in Davis, CA ericoverfield.com @EricOverfield Order Your Copy http://pxml.ly/zsqykd Co-author: “Pro SharePoint 2013 Branding and Responsive Web Development” (Apress – June 12th, 2013) Co-author: “Black Magic Solutions for White Hat SharePoint” (August, 2013)
  • 3. What You Will Learn  What are Display Templates  Where we use Display Templates  Types of Display Templates  How to create our own Display Templates @EricOverfield - pixelmill.com
  • 5. Display Templates in a Nut Shell  JavaScript based templates for rendering content @EricOverfield - pixelmill.com  Based on Client Side Rendering (CSR)  HTML/JS rendering occurs at client side, not server side  Replaces the need for XSLT!  We work with HTML files, SharePoint handles most JS  SharePoint 2013 / SharePoint Online rendering engine
  • 6. @EricOverfield - pixelmill.com Where we use Display Templates
  • 7. Display Templates are Now Everywhere  Refiners @EricOverfield - pixelmill.com  Content Search Web Part  Certain System Pages  i.e. CSWP Query Builder, Reports, eDiscovery  Search Results and Hover Panels
  • 9. Display Template Alternatives?  XSLT still available for server side rendering  Must be set by exporting a Content Search Webpart  Set “AlwaysRenderOnServer” property to true  Sample XSLT can be found in: /_catalogs/masterpage/Display Templates/Server Style Sheets @EricOverfield - pixelmill.com  Content Query Web Part still uses XSLT
  • 10. @EricOverfield - pixelmill.com Types of Display Templates
  • 11. Control Templates and Item Templates  Control Templates (Similar to ContentQueryMain.xsl)  Used once per query, i.e. a general wrapper  Item Templates (Similar to ItemStyle.xsl)  Used once per result @EricOverfield - pixelmill.com
  • 12. Finding Display Templates  /_catalogs/masterpage/Display Templates @EricOverfield - pixelmill.com  Stored in Master Page Gallery  Custom Display Template may be stored anywhere in MPG  Just have to properly set Content Types and Properties  Each Display Template includes a .html and a .js file  Only customize the .html file  Unless you choose to live dangerously…
  • 14. Create Our Own Display Templates @EricOverfield - pixelmill.com
  • 15. Creating a Custom Display Template  Copy, paste and rename only the .html file  SharePoint will handle the .js for you @EricOverfield - pixelmill.com  Always start from an existing Display Template  Modify at least the <title /> tag  Place all custom code* after the first <div>
  • 16. Creating a Custom Display Template @EricOverfield - pixelmill.com Demo
  • 18. Breaking Down Control Templates @EricOverfield - pixelmill.com  <html>  <title /> (“name” of display template)  <body>  <div> (only place custom code after first div)  Include scripts / links to custom CSS  Additional pre-rendering JavaScript including post render binding  AddPostRenderCallback() or ctx.OnPostRender.push()  Finally your custom display code (HTML and JavaScript)
  • 19. Breaking Down Item Templates @EricOverfield - pixelmill.com  <html>  <title /> (“name” of display template)  <mso:ManagedPropertyMapping /> ‘JS Reference Name’{Display Name}:’Manager Property list’; i.e. 'Picture URL'{Picture URL}:'PublishingImage;PictureURL;'  <body>  <div> (only place custom code after first div)  Additional pre-rendering JavaScript  Finally your custom item display code (HTML and JavaScript)
  • 20. Custom Control and Item Display Templates @EricOverfield - pixelmill.com Demo
  • 21. Search Results and Display Templates @EricOverfield - pixelmill.com
  • 22. Search Results and Display Templates @EricOverfield - pixelmill.com  Display Templates used for  Refinement panels  Search Input control  Search results and result types  Hover panels  With results types, set specific item templates per item type
  • 23. Search Results, Hover Panels, Refinement Panels and Display Templates @EricOverfield - pixelmill.com Demo
  • 24. Debugging Display Templates @EricOverfield - pixelmill.com  Use browser developer toolbar or Visual Studio  I prefer console.log(), or set breakpoints  Binding to Visual Studio is great for long debug sessions
  • 26. Important JavaScript Reference @EricOverfield - pixelmill.com  AddPostRenderCallback(ctx, function () {});  $getItemValue(ctx, "JS Reference Name");  $includeScript(this.url, "~sitecollection/…/?.js");  $includeCSS(this.url, "~sitecollection/…/?.css");  ctx.ClientControl.get_numberOfItems(); (per page)  ctx.DataProvider.get_totalRows(); (total rows)  $isNull(object), $isEmptyString(string)
  • 27. A Quick Review @EricOverfield - pixelmill.com  What are Display Templates  Where we use Display Templates  Types of Display Templates  How to create our own Display Templates
  • 28. Special Thanks Corey Roth (Outstanding session from SPC 2014) http://pxml.ly/2DF48QX @EricOverfield - pixelmill.com Marc Anderson (Inspiration) http://pxml.ly/2F6U9hH Elio Struyf (Accordion/Tab Display Template Demo Concept) http://pxml.ly/2KDNB3R
  • 29. Resources SharePoint 2013 Design Manager display templates (MSDN) http://pxml.ly/26P96C Ultimate Diagnostic Display Template (CSWP) – on GitHub http://pxml.ly/A3ANNG Display template reference in SharePoint Server 2013 (TechNet) http://pxml.ly/2KDNNKP 4 tips for using jQuery with SharePoint Display Templates http://pxml.ly/3ZAD2GA 10 SharePoint display template tips and tricks http://pxml.ly/MBVWT34 The Anatomy of SharePoint 2013 Display Templates http://pxml.ly/U8YU94X @EricOverfield - pixelmill.com Useful JavaScript to know when working with SharePoint Display Templates http://pxml.ly/ZE87BNW Demo Source files on GitHub http://pxml.ly/cDGtygL
  • 30. Thank You Eric Overfield @EricOverfield ericoverfield.com Order Your Copy http://pxml.ly/zsqykd “Pro SharePoint 2013 Branding and Responsive Web Development” (Apress – June 12th, 2013) http://pxml.ly/EO-SP-DisplayTemplates Display Templates Breaking Down

Notes de l'éditeur

  1. Slides will be available from blog and twitter Dev heavy with majority in demos How may here have used the CQWP, or feel they are experts with CQWPs? Who has used Display Templates? Experts?
  2. Will make available on blog and twitter (slideshare.net), so if you remember one of those then you can always review everything we discuss
  3. Screenshot from http://sharepoint.microsoft.com/blog/Pages/BlogPost.aspx?pID=1041
  4. Open SPD and find Display Template folder and show sub folders along with html and js files. Also show in browser along with Content types, properties and how to disassociate Review .html and .js files.
  5. Create a custom control template, update title and show how js files are managed for us. Use custom content search so after publishing, we can show custom control template.
  6. Modify aspects of control and item templates to make magical image layout based on MixItUp https://mixitup.kunkalabs.com/ Will show custom managed properties in item template Post render in control template
  7. Show search results page Modify results control template to add own class, update webpart to link to this control template Show panel chain from item template to hover panel Update item template to include another managed property field (add new retrieved field) Add new panel item template and link to this based on our result type Change refinement panel to auto collapse all fields.
  8. Go back to CSWP demo and open up control template Add console.log statements Set breakpoints Bind to Visual Studio
  9. Thank You! Don’t forget to check out my blog where you can download this presentation or the recording. Easiest way to get to the material I referenced