SlideShare a Scribd company logo
Quick Start Guide to
JavaScript Frameworks
for SharePoint Add-ins
JavaScript Frameworks and Libraries
2
Sonja
Madsen
SP2013.blogspot.com
@sonjamadsen
dev@sonjasapps.com
www.sonjasapps.com
3
SharePoint
2003-2010
JavaScript
frameworks
and libraries
SharePoint
REST, CSOM
SharePoint
2010-2013
JavaScript Frameworks
5
Standardized code structure and rules
HTML, CSS and JS
Front-end frameworks
β€’ CSS to position elements
β€’ Typography styles
β€’ Browser compatibility
β€’ Standard CSS classes
β€’ Set of tools
β€’ Imposes no structure
jQuery
6
JavaScript library
Most popular
Open-source
Released in 2006
Easy to select DOM elements
Used in Bootstrap and other libraries
jQuery
Start with $(document).ready(function(){
AJAX calls $.ajax({
Element selector $(".item")
Chaining $(".item").addClass("blue").slideDown("slow");
Jquery.ui, jquery.validation
7
Bootstrap
The most popular HTML, CSS, and JS framework for developing
responsive, mobile first projects on the web
Open-source
Twitter Bootstrap in 2011
Bootstrap 3.0 - mobile first
Bootstrap 4 alpha
8
Elements
CSS
β€’ Grid, typography, code, tables, forms, buttons, images
Components
β€’ Glyphicons, dropdowns, input, navs, nav bars, breadcrumbs, pagination, labels,
badges, jumbotron, page header, thumbnails, alerts, progress bars, media object, list
group, panels, responsive embed, wells
JavaScript
ο‚ž Transitions, modal, dropdown, scrollspy, tab, tooltip, popover, alert, button, collapse, carousel, affix
Customize
9
Quick start guide to java script frameworks for sharepoint add ins sharepoint days
Quick start guide to java script frameworks for sharepoint add ins sharepoint days
What is Bootstrap?
Grid
Forms
Navigation, tabs
Popovers, badges, collapse, pagination…
12
Quick start guide to java script frameworks for sharepoint add ins sharepoint days
Quick start guide to java script frameworks for sharepoint add ins sharepoint days
Quick start guide to java script frameworks for sharepoint add ins sharepoint days
Quick start guide to java script frameworks for sharepoint add ins sharepoint days
Grid HTML
<div class="col-md-12"> - entire page
<div class="col-md-6”> - 50%
<div class="col-md-12 col-lg-12 col-sm-12 col-xs-12">
<div class="col-md-12 hidden-xs">
17
Button HTML
18
<a href="#" class="btn btn-default btn-md active">Cancel
MEDIUM</a>
<button type="button" class="btn btn-success">
Success</button>
DEMO Bootstrap Provider Add-in
DEMO Bootstrap
SharePoint hosted Add-in
LESS
Extends the CSS language, adding features that allow variables, mixins,
functions
Bootstrap is based on LESS
Bootstrap 4.0 is based on SASS
21
DEMO Bootstrap with LESS
SharePoint hosted add-in
Bootstrap Themes
Bootswatch – free themes at bootswatch.com
Wrapbootstrap – payed themes at wrapbootstrap.com
Official Bootstrap themes -
http://themes.getbootstrap.com/collections/all
23
jQuery Validation / Unobtrusive
HTML
<input type=β€œtext” id=β€œSiteTitle”
JavaScript
rules: {
"SiteTitle": { required: true, minlength: 5 }
},
messages: {
"SiteTitle": {
required: "Please enter the site title.",
minlength: "Minimum length is 5 letters."
}
}
HTML
<input type="textβ€œ id=β€œSiteTitle”
data-rule-required="true"
data-msg-required="The Site Title field is required.β€œ
data-rule-minlength="5"
data-msg-minlength="The minimum length is 5 letters.β€œ
JavaScript
$form.validate();
24
Data Rules
data-rule-required="true"
data-rule-email="true"
data-rule-url="true"
data-rule-date="true"
data-rule-dateISO="true"
data-rule-number="true"
data-rule-digits="true"
data-rule-creditcard="true"
data-rule-minlength="6"
data-rule-maxlength="24"
data-rule-rangelength="5,10"
data-rule-min="5"
data-rule-max="10"
data-rule-range="5,10"
25
Textbox validation
26
Modernizr
Detects HTML5 and CSS3 features that your browser supports on
page load
Result of β€œfeature detection” is β€œyes” or β€œno”
Adds classes to HTML
https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-
browser-Polyfills
Support IE6+, Firefox 3.5+, Opera 9.6+, Safari 2+, Chrome
27
Support IE6+, Firefox 3.5+,
Opera 9.6+, Safari 2+, Chrome
Modernizr
Modernizr.load({
test: Modernizr.borderradius,
yep : alert("This browser supports border radius."),
nope: 'PIE_IE678.js'
});
29
Respondjs
It loops through the CSS referenced on the page
IE8: re-requests the CSS files using Ajax
Polyfill for CSS min-width and max-width in browsers that don't
support CSS3 Media Queries
30
Polyfills, shims
Shim: a generic code, a library that brings a new API to an older
environment
Polyfill: downloadable code with fallback for functionality that is not
available in your browser
Also with newer browsers
31
Links
jQuery http://api.jquery.com/
Bootstrap tutorial http://www.tutorialspoint.com/bootstrap/bootstrap_tutorial.pdf
Modernizr http://modernizr.com/docs/
Respond https://github.com/scottjehl/Respond
Building Responsive UI with Bootstrap on MVA
http://www.microsoftvirtualacademy.com/training-courses/building-responsive-ui-
with-bootstrap
LESS http://lesscss.org/
Polyfills https://github.com/Modernizr/Modernizr/wiki/HTML5-Cross-browser-Polyfills
32
33

More Related Content

PPTX
JavaScript Frameworks for SharePoint add-ins Cambridge
PPTX
Quick start guide to java script frameworks for sharepoint apps spsbe-2015
PDF
How to build your own Delve: combining machine learning, big data and SharePoint
PPTX
Search-Driven Applications with SharePoint 2013 (#SBSBE16)
PPTX
SPSBE building an faq for end users
PPTX
HTML5 - An Introduction
PPTX
The SharePoint & jQuery Guide
PPTX
SharePoint Performance
JavaScript Frameworks for SharePoint add-ins Cambridge
Quick start guide to java script frameworks for sharepoint apps spsbe-2015
How to build your own Delve: combining machine learning, big data and SharePoint
Search-Driven Applications with SharePoint 2013 (#SBSBE16)
SPSBE building an faq for end users
HTML5 - An Introduction
The SharePoint & jQuery Guide
SharePoint Performance

What's hot (20)

PPTX
SEF2013 - Create a Business Solution, Step by Step, with No Managed Code
DOCX
What is php
PDF
What is php
PPTX
SEF2013 - A jQuery Primer for SharePoint
PDF
6 Months PHP internship in Noida
PPTX
Software development
PPTX
Content by query web part
PPTX
Getting The Most Out Of SP Search SPSTC
PPTX
Spsbe 18-04-15 - should i move my network folders to office 365
Β 
PPTX
SharePoint REST vs CSOM
PPTX
SPSNH 2014 - The SharePoint & jQueryGuide
PDF
Django & React
PPTX
Creating Great Applications in SharePoint 2010 with Silverlight 4
ODP
Scout xss csrf_security_presentation_chicago
PDF
Local Storage for Web Applications
PPTX
SPTechCon 2014 How to develop and debug client side code in SharePoint
PPTX
Improving web site performance and scalability while saving
Β 
PDF
Drupal security
ODP
Silverstripe 2.4-highlights-gpmd
PDF
SPUnite17 IT Pros Guide to Managing SharePoint Search
SEF2013 - Create a Business Solution, Step by Step, with No Managed Code
What is php
What is php
SEF2013 - A jQuery Primer for SharePoint
6 Months PHP internship in Noida
Software development
Content by query web part
Getting The Most Out Of SP Search SPSTC
Spsbe 18-04-15 - should i move my network folders to office 365
Β 
SharePoint REST vs CSOM
SPSNH 2014 - The SharePoint & jQueryGuide
Django & React
Creating Great Applications in SharePoint 2010 with Silverlight 4
Scout xss csrf_security_presentation_chicago
Local Storage for Web Applications
SPTechCon 2014 How to develop and debug client side code in SharePoint
Improving web site performance and scalability while saving
Β 
Drupal security
Silverstripe 2.4-highlights-gpmd
SPUnite17 IT Pros Guide to Managing SharePoint Search
Ad

Viewers also liked (16)

PPTX
Building Share Point add-ins with JavaScript and c# Microsoft Western Europe ...
PPTX
GitHub and Office 365 video Munich
PDF
Guldbryllup
PPTX
Working with a super model for SharePoint Tuga IT 2016
PPTX
Workshop supermodel munich
PPTX
Branding Office 365 SharePoint Days
PPTX
SharePoint Framework, React, and Office UI Fabric spc adriatics 2016
PPTX
Quick start guide to java script frameworks for sharepoint add ins oslo
PPTX
Wonderful csom sps barcelona
PPTX
SharePoint Framework, React, and Office UI sps Silicon Valley
PPTX
Building SharePoint add-ins with JavaScript and c# sps Silicon Valley
PPTX
Cloud-first SharePoint JavaScript Add-ins - Collab 365
PPTX
Office 365 security concerns, EU General Data Protection Regulation (GDPR)
PPTX
SharePoint Framework, React and Office UI SPS Paris 2016 - d01
PPTX
Share point hosted add ins munich
PPTX
SharePoint Framework SPS Madrid 2016
Building Share Point add-ins with JavaScript and c# Microsoft Western Europe ...
GitHub and Office 365 video Munich
Guldbryllup
Working with a super model for SharePoint Tuga IT 2016
Workshop supermodel munich
Branding Office 365 SharePoint Days
SharePoint Framework, React, and Office UI Fabric spc adriatics 2016
Quick start guide to java script frameworks for sharepoint add ins oslo
Wonderful csom sps barcelona
SharePoint Framework, React, and Office UI sps Silicon Valley
Building SharePoint add-ins with JavaScript and c# sps Silicon Valley
Cloud-first SharePoint JavaScript Add-ins - Collab 365
Office 365 security concerns, EU General Data Protection Regulation (GDPR)
SharePoint Framework, React and Office UI SPS Paris 2016 - d01
Share point hosted add ins munich
SharePoint Framework SPS Madrid 2016
Ad

Similar to Quick start guide to java script frameworks for sharepoint add ins sharepoint days (20)

PPTX
Quickstartguidetojavascriptframeworksforsharepointapps spsbe-2015-15041903264...
Β 
PPTX
Hdv309 - Real World Sandboxed Solutions
PPTX
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
PPTX
Building RESTfull Data Services with WebAPI
PDF
OSGi and Spring Data for simple (Web) Application Development - Christian Bar...
PDF
OSGi and Spring Data for simple (Web) Application Development
PPTX
Break out of The Box - Part 2
PPTX
Quick & Easy SharePoint Forms with StratusForms
PPTX
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
PPTX
SPTechCon Boston 2015 - Utilizing jQuery in SharePoint
PPTX
SharePoint and jQuery Essentials
PPTX
ASP.NET MVC 5 - EF 6 - VS2015
PPTX
SPSTC - SharePoint & jQuery Essentials
PPT
Ajax workshop
PPTX
(Updated) SharePoint & jQuery Guide
PPTX
JavaScript front end performance optimizations
PPTX
SPTechCon DevDays - SharePoint & jQuery
PDF
Challenges of Simple Documents: When Basic isn't so Basic - Cassandra Targett...
PDF
GDG-USAR Tech winter break 2024 USAR.pdf
KEY
Introduction Django
Quickstartguidetojavascriptframeworksforsharepointapps spsbe-2015-15041903264...
Β 
Hdv309 - Real World Sandboxed Solutions
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
Building RESTfull Data Services with WebAPI
OSGi and Spring Data for simple (Web) Application Development - Christian Bar...
OSGi and Spring Data for simple (Web) Application Development
Break out of The Box - Part 2
Quick & Easy SharePoint Forms with StratusForms
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
SPTechCon Boston 2015 - Utilizing jQuery in SharePoint
SharePoint and jQuery Essentials
ASP.NET MVC 5 - EF 6 - VS2015
SPSTC - SharePoint & jQuery Essentials
Ajax workshop
(Updated) SharePoint & jQuery Guide
JavaScript front end performance optimizations
SPTechCon DevDays - SharePoint & jQuery
Challenges of Simple Documents: When Basic isn't so Basic - Cassandra Targett...
GDG-USAR Tech winter break 2024 USAR.pdf
Introduction Django

More from Sonja Madsen (12)

PPTX
Patterns in add ins espc15
PPTX
Branding Office 365 ESPC15
PPTX
Branding office 365 copenhagen
PPTX
Branding office 365 Netherlands
PPTX
Branding office 365
PPTX
Introduktion til SharePoint apps
PPTX
Mva migrate to a different office 365 plan
PPTX
Mva configure mobile devices for office 365
PPTX
Share point app architecture for the cloud and on premise
PPTX
Sonja madsen speaker slides espc 2013
PPTX
Sandboxed Solutions and Apps
PPTX
Sp24 my site_branding
Patterns in add ins espc15
Branding Office 365 ESPC15
Branding office 365 copenhagen
Branding office 365 Netherlands
Branding office 365
Introduktion til SharePoint apps
Mva migrate to a different office 365 plan
Mva configure mobile devices for office 365
Share point app architecture for the cloud and on premise
Sonja madsen speaker slides espc 2013
Sandboxed Solutions and Apps
Sp24 my site_branding

Recently uploaded (20)

PPTX
introduction about ICD -10 & ICD-11 ppt.pptx
DOCX
Unit-3 cyber security network security of internet system
PDF
Paper PDF World Game (s) Great Redesign.pdf
PDF
Testing WebRTC applications at scale.pdf
PDF
Sims 4 Historia para lo sims 4 para jugar
PPTX
CHE NAA, , b,mn,mblblblbljb jb jlb ,j , ,C PPT.pptx
PDF
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
Β 
PDF
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
PPTX
Introuction about WHO-FIC in ICD-10.pptx
PPTX
522797556-Unit-2-Temperature-measurement-1-1.pptx
PPTX
Digital Literacy And Online Safety on internet
PDF
Slides PDF The World Game (s) Eco Economic Epochs.pdf
PDF
πŸ’° π”πŠπ“πˆ πŠπ„πŒπ„ππ€ππ†π€π πŠπˆππ„π‘πŸ’πƒ π‡π€π‘πˆ 𝐈𝐍𝐈 πŸπŸŽπŸπŸ“ πŸ’°
Β 
PDF
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
PPTX
innovation process that make everything different.pptx
PPTX
Power Point - Lesson 3_2.pptx grad school presentation
Β 
PPTX
PptxGenJS_Demo_Chart_20250317130215833.pptx
PDF
The New Creative Director: How AI Tools for Social Media Content Creation Are...
PDF
Cloud-Scale Log Monitoring _ Datadog.pdf
PPTX
Slides PPTX World Game (s) Eco Economic Epochs.pptx
introduction about ICD -10 & ICD-11 ppt.pptx
Unit-3 cyber security network security of internet system
Paper PDF World Game (s) Great Redesign.pdf
Testing WebRTC applications at scale.pdf
Sims 4 Historia para lo sims 4 para jugar
CHE NAA, , b,mn,mblblblbljb jb jlb ,j , ,C PPT.pptx
APNIC Update, presented at PHNOG 2025 by Shane Hermoso
Β 
FINAL CALL-6th International Conference on Networks & IOT (NeTIOT 2025)
Introuction about WHO-FIC in ICD-10.pptx
522797556-Unit-2-Temperature-measurement-1-1.pptx
Digital Literacy And Online Safety on internet
Slides PDF The World Game (s) Eco Economic Epochs.pdf
πŸ’° π”πŠπ“πˆ πŠπ„πŒπ„ππ€ππ†π€π πŠπˆππ„π‘πŸ’πƒ π‡π€π‘πˆ 𝐈𝐍𝐈 πŸπŸŽπŸπŸ“ πŸ’°
Β 
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
innovation process that make everything different.pptx
Power Point - Lesson 3_2.pptx grad school presentation
Β 
PptxGenJS_Demo_Chart_20250317130215833.pptx
The New Creative Director: How AI Tools for Social Media Content Creation Are...
Cloud-Scale Log Monitoring _ Datadog.pdf
Slides PPTX World Game (s) Eco Economic Epochs.pptx

Quick start guide to java script frameworks for sharepoint add ins sharepoint days