jquery : rethink web development

18
JQuery : Rethink Web Development Van Gaever Tom [email protected]

Upload: eadoin

Post on 14-Feb-2016

63 views

Category:

Documents


0 download

DESCRIPTION

JQuery : Rethink Web Development. Van Gaever Tom [email protected]. Agenda. JQuery Introduction What makes JQuery interesting? How do I use it? Demo SharePoint with JQuery Best Practices Possibilities . Introduction. What is JQuery? What do I need to understand JQuery?. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: JQuery : Rethink Web Development

JQuery : Rethink Web Development

Van Gaever Tom

[email protected]

Page 2: JQuery : Rethink Web Development

AgendaJQuery

IntroductionWhat makes JQuery interesting?How do I use it?Demo

SharePoint with JQueryBest PracticesPossibilities

Page 3: JQuery : Rethink Web Development

IntroductionWhat is JQuery?What do I need to understand JQuery?

Page 4: JQuery : Rethink Web Development

IntroductionWhat is JQuery?What do I need to understand JQuery?

#id.class$()

Page 5: JQuery : Rethink Web Development

IntroductionWhy should I consider using it?How can it help me?What are these plugins?

Page 6: JQuery : Rethink Web Development

IntroductionWhy should I consider using it?How can it help me?What are these plugins?

$(object identifier).action();

Page 7: JQuery : Rethink Web Development

DemoSelectorsFormsAttributesManipulatorsEvents

AJAXEventsUtilitiesDrag & DropWidgets

Page 8: JQuery : Rethink Web Development

PluginsContent SliderFancy BoxTree...

Page 9: JQuery : Rethink Web Development

Ajax Libraries2007 2009 Diff

JQuery 13.3 % 71.4 % 58.1 %AJAX Control Toolkit 49.6 % 58.8 % 9.2 %ASP.NET Ajax 73.7 % 44.8 % -28.9 %Telerik radControls 11.7 % 15.6 % 3.9 %Ajax.NET Professional 13.3 % 10.3 % -3.0 %JSON.NET 3.3 % 9.7 % 6.4 %Raw Ajax 11.3 % 8.6 % -2.7 %Prototype 11.5 % 8.3 % -3.2 %Yahoo! UI 5.5 % 7.0 % 1.5 %Ext JS 6.1 % 6.1 % 0.0 %Script.aculo.us 9.7 % 5.3 % -4.4 %

http://codeclimber.net.nz/

Page 10: JQuery : Rethink Web Development

Microsoft SupportSeptember 2008Official Development PlatformAdditional controlsTesting & patches

Page 11: JQuery : Rethink Web Development

Visual StudioVisual Studio 2008 SP1Hotfix

mylibrary-vsdoc.jsmylibrary.debug.jsmylibrary.js

Page 12: JQuery : Rethink Web Development

SharePoint & JqueryWeb based Javascript

Document Library12 hiveAdditionalPageHead Delegate Control

Content Editor Webpart“&PageView=Shared&ToolPaneView=2”

Page 13: JQuery : Rethink Web Development

SharePoint & JquerySharePoint development: • Custom control• Create sharepoint feature• Deploy in the GAC• Manipulate Masterpage• What about navigation settings?• Performance?• Service Packs?

JQuery:• 20 lines of Javascript• Keep navigation settings• No assembly needed• Client side

Page 14: JQuery : Rethink Web Development

http://darrenjohnstone.net

var lists = new SPAPI_Lists("http://server") ;var listcollection = lists.getListCollection();if(listcollection.status == "200"){$(listcollection.responseXML).find("List").each(function(){

//here we have each list});

Javascript APISharePoint webservices

Page 15: JQuery : Rethink Web Development

Asynchronous TasksQuickly add multiple tasks at onceNo postbackMessage when task has been savedClear the textboxes

Page 16: JQuery : Rethink Web Development

Demo’s

Page 17: JQuery : Rethink Web Development

Informationhttp://jquery.com/http://jqueryui.com/http://darrenjohnstone.net

http://www.tomvangaever.behttp://www.endusersharepoint.com

Page 18: JQuery : Rethink Web Development

Thank You!