SlideShare una empresa de Scribd logo
1 de 37
Quick Start Guide to JavaScript Frameworks
for SharePoint Add-ins
#SPSOslo
Sonja Madsen
October 17th, 2015
SharePoint Saturday
Oslo 2015
SharePoint Saturday
Oslo 2015
@sonjamadsen
dev@sonjasapps.com
Belgium,
Paris,
Netherlands,
Cambridge,
Copenhagen,
Barcelona,
Oslo,
Stockholm,
Slovenia
www.sonjasapps.com
Sonja Madsen
SP2013.blogspot.com
JavaScript Frameworks and Libraries
Development
SharePoint 2003-2010
SharePoint 2010-2013
SHAREPOINT
DEVELOPMENT
JavaScript Frameworks
• 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
• 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
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
Bootstrap
• 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
What is Bootstrap?
• Grid
• Forms
• Navigation, tabs
• Popovers, badges, collapse, pagination…
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">
Button HTML
• <a href="#" class="btn btn-default btn-md active">Cancel
MEDIUM</a>
• <button type="button" class="btn btn-success">
Success</button>
LESS
Extends the CSS language, adding features that
allow variables, mixins, functions
Bootstrap is based on LESS
Bootstrap 4.0 is based on SASS
Bootstrap Themes
• Bootswatch – free themes at bootswatch.com
• Wrapbootstrap – payed themes at
wrapbootstrap.com
• Official Bootstrap themes -
http://themes.getbootstrap.com/collections/all
SharePoint Saturday
Oslo 2015
jQuery Validation
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
5 letters.“
JavaScript
$form.validate();
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"
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/H
TML5-Cross-browser-Polyfills
• Support IE6+, Firefox 3.5+, Opera 9.6+, Safari 2+,
Chrome
Support IE6+, Firefox 3.5+,
Opera 9.6+, Safari 2+, Chrome
Modernizr
Yepnopejs is deprecated
Modernizr.load({
test: Modernizr.borderradius,
yep : alert("This browser supports border radius."),
nope: 'PIE_IE678.js'
});
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
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
SharePoint Saturday
Oslo 2015
• 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
Links
SharePoint Saturday
Oslo 2015
SharePoint Saturday
Oslo 2015
Thanks to our
Sponsors
Questions?
Get stamps from all the sponsors,
so make sure to visit them
Deposit the passport to enter the
prize raffle
Good luck!
The SPSOslo Passport
FREE BEER!
Make sure to get your voucher
Network and have fun with your
colleagues and mingle with our
great speaker lineup.
SharePint sponsored by
They help us improve for SharePoint Saturday 2016!
Remember to evaluate our sessions

Más contenido relacionado

La actualidad más candente

Simplify AJAX using jQuery
Simplify AJAX using jQuerySimplify AJAX using jQuery
Simplify AJAX using jQuery
Siva Arunachalam
 
Content by query web part
Content by query web partContent by query web part
Content by query web part
IslamKhattab
 
Applied component i unit 2
Applied component i unit 2Applied component i unit 2
Applied component i unit 2
Pramod Redekar
 
Html5 storage and browser storage
Html5 storage and browser storageHtml5 storage and browser storage
Html5 storage and browser storage
Sway Deng
 

La actualidad más candente (20)

Introducing project spartan
Introducing project spartanIntroducing project spartan
Introducing project spartan
 
SEF2013 - Create a Business Solution, Step by Step, with No Managed Code
SEF2013 - Create a Business Solution, Step by Step, with No Managed CodeSEF2013 - Create a Business Solution, Step by Step, with No Managed Code
SEF2013 - Create a Business Solution, Step by Step, with No Managed Code
 
Search as main navigation
Search as main navigationSearch as main navigation
Search as main navigation
 
PHP Training Session 9
PHP Training Session 9PHP Training Session 9
PHP Training Session 9
 
Introduction to html & css
Introduction to html & cssIntroduction to html & css
Introduction to html & css
 
Simplify AJAX using jQuery
Simplify AJAX using jQuerySimplify AJAX using jQuery
Simplify AJAX using jQuery
 
Content by query web part
Content by query web partContent by query web part
Content by query web part
 
Neos CMS and SEO
Neos CMS and SEONeos CMS and SEO
Neos CMS and SEO
 
Client Side Optimization
Client Side OptimizationClient Side Optimization
Client Side Optimization
 
Applied component i unit 2
Applied component i unit 2Applied component i unit 2
Applied component i unit 2
 
Hack angular wildly
Hack angular wildlyHack angular wildly
Hack angular wildly
 
Practical Ruby Projects With Mongo Db
Practical Ruby Projects With Mongo DbPractical Ruby Projects With Mongo Db
Practical Ruby Projects With Mongo Db
 
Building Software Backend (Web API)
Building Software Backend (Web API)Building Software Backend (Web API)
Building Software Backend (Web API)
 
Introduction to Jquery
Introduction to JqueryIntroduction to Jquery
Introduction to Jquery
 
SilverStripe From a Developer's Perspective
SilverStripe From a Developer's PerspectiveSilverStripe From a Developer's Perspective
SilverStripe From a Developer's Perspective
 
6 Months PHP internship in Noida
6 Months PHP internship in Noida6 Months PHP internship in Noida
6 Months PHP internship in Noida
 
HTML5 Storage/Cache
HTML5 Storage/CacheHTML5 Storage/Cache
HTML5 Storage/Cache
 
Html5 storage and browser storage
Html5 storage and browser storageHtml5 storage and browser storage
Html5 storage and browser storage
 
The SharePoint & jQuery Guide
The SharePoint & jQuery GuideThe SharePoint & jQuery Guide
The SharePoint & jQuery Guide
 
Net online training
Net online trainingNet online training
Net online training
 

Similar a Quick start guide to java script frameworks for sharepoint add ins oslo

Hdv309 - Real World Sandboxed Solutions
Hdv309 - Real World Sandboxed SolutionsHdv309 - Real World Sandboxed Solutions
Hdv309 - Real World Sandboxed Solutions
woutervugt
 

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

Quick start guide to java script frameworks for sharepoint add ins sharepoint...
Quick start guide to java script frameworks for sharepoint add ins sharepoint...Quick start guide to java script frameworks for sharepoint add ins sharepoint...
Quick start guide to java script frameworks for sharepoint add ins sharepoint...
 
Quickstartguidetojavascriptframeworksforsharepointapps spsbe-2015-15041903264...
Quickstartguidetojavascriptframeworksforsharepointapps spsbe-2015-15041903264...Quickstartguidetojavascriptframeworksforsharepointapps spsbe-2015-15041903264...
Quickstartguidetojavascriptframeworksforsharepointapps spsbe-2015-15041903264...
 
SharePoint and jQuery Essentials
SharePoint and jQuery EssentialsSharePoint and jQuery Essentials
SharePoint and jQuery Essentials
 
Hdv309 - Real World Sandboxed Solutions
Hdv309 - Real World Sandboxed SolutionsHdv309 - Real World Sandboxed Solutions
Hdv309 - Real World Sandboxed Solutions
 
Building RESTfull Data Services with WebAPI
Building RESTfull Data Services with WebAPIBuilding RESTfull Data Services with WebAPI
Building RESTfull Data Services with WebAPI
 
PhDigital 2020: Web Development
PhDigital 2020: Web DevelopmentPhDigital 2020: Web Development
PhDigital 2020: Web Development
 
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechConThe SharePoint and jQuery Guide by Mark Rackley - SPTechCon
The SharePoint and jQuery Guide by Mark Rackley - SPTechCon
 
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
Popping the Hood: How to Create Custom SharePoint Branding by Randy Drisgill ...
 
Ajax workshop
Ajax workshopAjax workshop
Ajax workshop
 
Become a Full Stack Web Developer (.NET) - Thisiswali
Become a Full Stack Web Developer (.NET) - ThisiswaliBecome a Full Stack Web Developer (.NET) - Thisiswali
Become a Full Stack Web Developer (.NET) - Thisiswali
 
Intro JavaScript
Intro JavaScriptIntro JavaScript
Intro JavaScript
 
Slow kinda sucks
Slow kinda sucksSlow kinda sucks
Slow kinda sucks
 
9 Months Web Development Diploma Course in North Delhi
9 Months Web Development Diploma Course in North Delhi9 Months Web Development Diploma Course in North Delhi
9 Months Web Development Diploma Course in North Delhi
 
HTML5 for ASP.NET Developers
HTML5 for ASP.NET DevelopersHTML5 for ASP.NET Developers
HTML5 for ASP.NET Developers
 
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
jQuery Makes Writing JavaScript Fun Again (for HTML5 User Group)
 
Unleashing Creative Freedom with MODX - 2015-08-26 at PHP Zwolle
Unleashing Creative Freedom with MODX - 2015-08-26 at PHP Zwolle Unleashing Creative Freedom with MODX - 2015-08-26 at PHP Zwolle
Unleashing Creative Freedom with MODX - 2015-08-26 at PHP Zwolle
 
JavaScript front end performance optimizations
JavaScript front end performance optimizationsJavaScript front end performance optimizations
JavaScript front end performance optimizations
 
Working with a super model for SharePoint Tuga IT 2016
Working with a super model for SharePoint Tuga IT 2016Working with a super model for SharePoint Tuga IT 2016
Working with a super model for SharePoint Tuga IT 2016
 
SPTechCon Boston 2015 - Utilizing jQuery in SharePoint
SPTechCon Boston 2015 - Utilizing jQuery in SharePointSPTechCon Boston 2015 - Utilizing jQuery in SharePoint
SPTechCon Boston 2015 - Utilizing jQuery in SharePoint
 
SPTechCon DevDays - SharePoint & jQuery
SPTechCon DevDays - SharePoint & jQuerySPTechCon DevDays - SharePoint & jQuery
SPTechCon DevDays - SharePoint & jQuery
 

Más de Sonja Madsen

Más de Sonja Madsen (20)

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
 
Building SharePoint add-ins with JavaScript and c# sps Silicon Valley
Building SharePoint add-ins with JavaScript and c# sps Silicon ValleyBuilding SharePoint add-ins with JavaScript and c# sps Silicon Valley
Building SharePoint add-ins with JavaScript and c# sps Silicon Valley
 
SharePoint Framework, React, and Office UI Fabric spc adriatics 2016
SharePoint Framework, React, and Office UI Fabric spc adriatics 2016SharePoint Framework, React, and Office UI Fabric spc adriatics 2016
SharePoint Framework, React, and Office UI Fabric spc adriatics 2016
 
SharePoint Framework, React and Office UI SPS Paris 2016 - d01
SharePoint Framework, React and Office UI SPS Paris 2016 - d01SharePoint Framework, React and Office UI SPS Paris 2016 - d01
SharePoint Framework, React and Office UI SPS Paris 2016 - d01
 
SharePoint Framework SPS Madrid 2016
SharePoint Framework SPS Madrid 2016SharePoint Framework SPS Madrid 2016
SharePoint Framework SPS Madrid 2016
 
Cloud-first SharePoint JavaScript Add-ins - Collab 365
Cloud-first SharePoint JavaScript Add-ins - Collab 365Cloud-first SharePoint JavaScript Add-ins - Collab 365
Cloud-first SharePoint JavaScript Add-ins - Collab 365
 
Building Share Point add-ins with JavaScript and c# Microsoft Western Europe ...
Building Share Point add-ins with JavaScript and c# Microsoft Western Europe ...Building Share Point add-ins with JavaScript and c# Microsoft Western Europe ...
Building Share Point add-ins with JavaScript and c# Microsoft Western Europe ...
 
Office 365 security concerns, EU General Data Protection Regulation (GDPR)
Office 365 security concerns, EU General Data Protection Regulation (GDPR) Office 365 security concerns, EU General Data Protection Regulation (GDPR)
Office 365 security concerns, EU General Data Protection Regulation (GDPR)
 
Share point hosted add ins munich
Share point hosted add ins munichShare point hosted add ins munich
Share point hosted add ins munich
 
Workshop supermodel munich
Workshop supermodel munichWorkshop supermodel munich
Workshop supermodel munich
 
GitHub and Office 365 video Munich
GitHub and Office 365 video MunichGitHub and Office 365 video Munich
GitHub and Office 365 video Munich
 
Branding Office 365 SharePoint Days
Branding Office 365 SharePoint DaysBranding Office 365 SharePoint Days
Branding Office 365 SharePoint Days
 
Patterns in add ins espc15
Patterns in add ins espc15Patterns in add ins espc15
Patterns in add ins espc15
 
Branding Office 365 ESPC15
Branding Office 365 ESPC15Branding Office 365 ESPC15
Branding Office 365 ESPC15
 
Wonderful csom sps barcelona
Wonderful csom sps barcelonaWonderful csom sps barcelona
Wonderful csom sps barcelona
 
Branding office 365 copenhagen
Branding office 365 copenhagenBranding office 365 copenhagen
Branding office 365 copenhagen
 
Branding office 365 Netherlands
Branding office 365 NetherlandsBranding office 365 Netherlands
Branding office 365 Netherlands
 
Branding office 365
Branding office 365Branding office 365
Branding office 365
 
Introduktion til SharePoint apps
Introduktion til SharePoint appsIntroduktion til SharePoint apps
Introduktion til SharePoint apps
 
Mva migrate to a different office 365 plan
Mva migrate to a different office 365 planMva migrate to a different office 365 plan
Mva migrate to a different office 365 plan
 

Último

一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
pxcywzqs
 
PowerDirector Explination Process...pptx
PowerDirector Explination Process...pptxPowerDirector Explination Process...pptx
PowerDirector Explination Process...pptx
galaxypingy
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Monica Sydney
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
ayvbos
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Monica Sydney
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Monica Sydney
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
gajnagarg
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
ydyuyu
 

Último (20)

best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
best call girls in Hyderabad Finest Escorts Service 📞 9352988975 📞 Available ...
 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
 
PowerDirector Explination Process...pptx
PowerDirector Explination Process...pptxPowerDirector Explination Process...pptx
PowerDirector Explination Process...pptx
 
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi EscortsRussian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
Russian Escort Abu Dhabi 0503464457 Abu DHabi Escorts
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.
 
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
20240510 QFM016 Irresponsible AI Reading List April 2024.pdf
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girlsRussian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
Russian Call girls in Abu Dhabi 0508644382 Abu Dhabi Call girls
 
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
 
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
20240509 QFM015 Engineering Leadership Reading List April 2024.pdf
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime NagercoilNagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
Nagercoil Escorts Service Girl ^ 9332606886, WhatsApp Anytime Nagercoil
 
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
APNIC Policy Roundup, presented by Sunny Chendi at the 5th ICANN APAC-TWNIC E...
 
Microsoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck MicrosoftMicrosoft Azure Arc Customer Deck Microsoft
Microsoft Azure Arc Customer Deck Microsoft
 
Real Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirtReal Men Wear Diapers T Shirts sweatshirt
Real Men Wear Diapers T Shirts sweatshirt
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
 

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

  • 1. Quick Start Guide to JavaScript Frameworks for SharePoint Add-ins #SPSOslo Sonja Madsen October 17th, 2015 SharePoint Saturday Oslo 2015
  • 5.
  • 6. JavaScript Frameworks • 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
  • 7. jQuery • JavaScript library • Most popular • Open-source • Released in 2006 • Easy to select DOM elements • Used in Bootstrap and other libraries
  • 8. jQuery • Start with $(document).ready(function(){ • AJAX calls $.ajax({ • Element selector $(".item") • Chaining $(".item").addClass("blue").slideDown("slow"); • Jquery.ui, jquery.validation
  • 9. 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
  • 10. Bootstrap • 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
  • 11.
  • 12.
  • 13.
  • 14. What is Bootstrap? • Grid • Forms • Navigation, tabs • Popovers, badges, collapse, pagination…
  • 15.
  • 16.
  • 17. 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">
  • 18. Button HTML • <a href="#" class="btn btn-default btn-md active">Cancel MEDIUM</a> • <button type="button" class="btn btn-success"> Success</button>
  • 19.
  • 20.
  • 21. LESS Extends the CSS language, adding features that allow variables, mixins, functions Bootstrap is based on LESS Bootstrap 4.0 is based on SASS
  • 22.
  • 23. Bootstrap Themes • Bootswatch – free themes at bootswatch.com • Wrapbootstrap – payed themes at wrapbootstrap.com • Official Bootstrap themes - http://themes.getbootstrap.com/collections/all
  • 24. SharePoint Saturday Oslo 2015 jQuery Validation 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 5 letters.“ JavaScript $form.validate();
  • 25. 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"
  • 26.
  • 27. 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/H TML5-Cross-browser-Polyfills • Support IE6+, Firefox 3.5+, Opera 9.6+, Safari 2+, Chrome
  • 28. Support IE6+, Firefox 3.5+, Opera 9.6+, Safari 2+, Chrome
  • 29. Modernizr Yepnopejs is deprecated Modernizr.load({ test: Modernizr.borderradius, yep : alert("This browser supports border radius."), nope: 'PIE_IE678.js' });
  • 30. 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
  • 31. 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
  • 32. SharePoint Saturday Oslo 2015 • 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 Links
  • 33. SharePoint Saturday Oslo 2015 SharePoint Saturday Oslo 2015 Thanks to our Sponsors
  • 35. Get stamps from all the sponsors, so make sure to visit them Deposit the passport to enter the prize raffle Good luck! The SPSOslo Passport
  • 36. FREE BEER! Make sure to get your voucher Network and have fun with your colleagues and mingle with our great speaker lineup. SharePint sponsored by
  • 37. They help us improve for SharePoint Saturday 2016! Remember to evaluate our sessions