1 / 13

Working Magic with jQuery and SharePoint Web Services

Working Magic with jQuery and SharePoint Web Services. What is jQuery?. is. What is jQueryUI ?. is. What is SPServices?. is. CSS Styles. .article { color: red ; }. Select something. Style it!. jQuery. Select something. $( '.article' ). hide() ;. Do something!.

connor
Télécharger la présentation

Working Magic with jQuery and SharePoint Web Services

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Working Magic with jQuery and SharePoint Web Services

  2. What is jQuery? is

  3. What is jQueryUI? is

  4. What is SPServices? is

  5. CSS Styles .article {color:red;} Select something Style it!

  6. jQuery Select something $('.article').hide(); Do something!

  7. Referencing Script Libraries from CDNs <!-- Reference the jQueryUI theme's stylesheet on the Google CDN. Here we're using the "Start" theme --> <link type="text/css" rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/themes/start/jquery-ui.css" /> <!-- Reference jQuery on the Google CDN --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <!-- Reference jQueryUI on the Google CDN --> <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js"></script> <!-- Reference SPServices on cdnjs (Cloudflare) --> <script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery.SPServices/0.7.1a/jquery.SPServices-0.7.1a.min.js"></script> More: http://sympmarc.com/2012/04/20/referencing-jquery-jqueryui-and-spservices-from-cdns/

  8. Adding Some UsefulSharePoint-Specific Tools into the Mix Content Editor Web Parts (CEWPs) Content Query Web Parts (CQWPs) Data View Web Parts (DVWPs)

  9. What Can’t You Do? • Event Receivers • Timer Jobs • Elevate Permissions • Deployments of a large number of sites or other objects • Deploy files to the server’s file system

  10. Don’t Forget Governance! • Development with jQuery should also follow good governance • Coding practices • Deployment mechanisms • Testing methods • Documentation • Training • Maintenance planning

  11. Scripting WorksGreat in “The Cloud”

  12. Demos

  13. Contact Information

More Related