The Dojo JavaScript Toolkit j p Part I: Ajax Support

37
© 2009 Marty Hall The Dojo JavaScript Toolkit Part I: Ajax Support (Dojo 1.3 Version) Originals of Slides and Source Code for Examples: http://courses.coreservlets.com/Course-Materials/ajax.html Customized Java EE Training: http://courses.coreservlets.com/ Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6. Developed and taught by well-known author and developer. At public venues or onsite at your location. © 2009 Marty Hall For live Ajax & GWT training, see training t htt // lt / courses at http://courses.coreservlets.com/. Taught by the author of Core Servlets and JSP, More Servlets and JSP and this tutorial Available at public Servlets and JSP, and this tutorial. Available at public venues, or customized versions can be held on-site at your organization. C d l d dt ht b M t H ll Customized Java EE Training: http://courses.coreservlets.com/ Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6. Developed and taught by well-known author and developer. At public venues or onsite at your location. Courses developed and taught by Marty Hall Java 6, intermediate/beginning servlets/JSP, advanced servlets/JSP, Struts, JSF 1.x & 2.0, Ajax, GWT, custom mix of topics Ajax courses can concentrate on 1 library (jQuery, Prototype/Scriptaculous, Ext-JS, Dojo, Google Closure) or survey several Courses developed and taught by coreservlets.com experts (edited by Marty) Spring, Hibernate/JPA, EJB3, Ruby/Rails Contact [email protected] for details

Transcript of The Dojo JavaScript Toolkit j p Part I: Ajax Support

Page 1: The Dojo JavaScript Toolkit j p Part I: Ajax Support

© 2009 Marty Hall

The Dojo JavaScript Toolkitj pPart I: Ajax Support

(Dojo 1.3 Version)( j )

Originals of Slides and Source Code for Examples:http://courses.coreservlets.com/Course-Materials/ajax.html

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

p j

© 2009 Marty Hall

For live Ajax & GWT training, see training t htt // l t /courses at http://courses.coreservlets.com/.

Taught by the author of Core Servlets and JSP, More Servlets and JSP and this tutorial Available at public Servlets and JSP, and this tutorial. Available at public venues, or customized versions can be held on-site at

your organization.C d l d d t ht b M t H ll

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

• Courses developed and taught by Marty Hall– Java 6, intermediate/beginning servlets/JSP, advanced servlets/JSP, Struts, JSF 1.x & 2.0, Ajax, GWT, custom mix of topics– Ajax courses can concentrate on 1 library (jQuery, Prototype/Scriptaculous, Ext-JS, Dojo, Google Closure) or survey several

• Courses developed and taught by coreservlets.com experts (edited by Marty)– Spring, Hibernate/JPA, EJB3, Ruby/Rails

Contact [email protected] for details

Page 2: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Topics in This Section

• Overview of Dojo• Installation and documentation• Quick summary of dojo.query and selectors• The dojo.xhrGet function and variants

– BasicsO ti– Options

– Sending data– Inserting HTMLInserting HTML– Handling JSON data

• Comparing Ajax support to other librariesp g j pp– Prototype, jQuery, Ext-JS

5

© 2009 Marty Hall

Introduction

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

Page 3: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Overview of Dojo

• Core– Utilities for Ajax, CSS querying, DOM manipulation,

cross-browser event handling, and general JavaScript programmingprogramming

– Very similar to jQuery

• Dijitj– Large set of rich GUI components– Much more extensive than jQuery UI

D j X• DojoX– Charts, graphs, vector graphics, fancy widgets

Similar to the jQuery Plugins– Similar to the jQuery Plugins

7

Core Utilities

• dojo.query("css selector")– Returns a NodeList of matching DOM elements.

• Almost identical to $("css selector") in jQuery.

• dojo xhrGet({options})• dojo.xhrGet({options})– Makes an Ajax GET request. Also dojo.xhrPost, etc.

• Moderately similar to $.ajax({options}) in jQueryy j ({ }) j y

– Example• dojo.xhrGet({ url: "address", load: responseHandler });

dojo addOnLoad(function)• dojo.addOnLoad(function)– Calls function after DOM loaded.

• Almost identical to $(function) in jQueryost de t ca to $( u ct o ) jQue y

• dojo.require("dojo.libraryName")– Loads Dojo libraries on the fly8

Page 4: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Downloading and Installation

• Download– http://download.dojotoolkit.org/– Choose “Download latest Stable Release”, then

dojo-release-x.y.z.zip or dojo-release-x.y.z.tar.gzdojo release x.y.z.zip or dojo release x.y.z.tar.gz• This tutorial uses release 1.3.1

• Installation– Unzip release file, creating 3 subfolders: dojo, dijit, dojox

• Folders are quite large, but core file (dojo.js) is small. • Other files are loaded on-the-fly based on dojo.require

statements.

– Copy 3 folders to WebContent/scripts of Eclipse project

• Online documentationOnline documentation– http://dojotoolkit.org/docs

9

Browser Compatibility

• Firefox– Core: 1.5 or later (vs 2.0 for jQuery)– Dijit: 2.0 or later (same as jQuery)

• Internet Explorer• Internet Explorer– 6.0 or later (same as jQuery)

• Safari Safari – 3.1 or later (vs. 3.0 for jQuery)

• Opera– Core: 9.6 or later (vs. 9.0 for jQuery)– Dijit: not supported!

• Chrome• Chrome – 1.0 or later

10

Page 5: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Industry Usage

11

Approximately 40% of matches to “prototype and JavaScript” were false positives such as “build a prototype with JavaScript”. So, discount the Prototype graph by about 40%.

© 2009 Marty Hall

dojo query & Selectors:dojo.query & Selectors: Basics

Note: brief intro only. More details in next tutorial section.

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

Page 6: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Selecting DOM Elements

• Idea– Use dojo.query("css selector") to get a set of DOM elements

• Then, perform operations on each (see next page)

• ExamplesExamples– dojo.query("#some-id")

• Return 1-element set (or empty set) of element with id• Simplest use and most common for Ajax (note the “#”!)• Simplest use, and most common for Ajax (note the # !)• Can also use dojo.byId("some-id") to get single element

– dojo.query("p")Return all p elements• Return all p elements

– dojo.query(".blah")• Return all elements that have class="blah"

– dojo.query("li b span.blah")• Return all <span class="blah"> elements that are inside b

elements, that in turn are inside li elements13

Manipulating DOM Elements

• Common functions on matched elementsd j (" l t ") f E h(f ti )– dojo.query("selector").forEach(function)

• Calls function on each element. “this” set to element.– dojo.query("selector").addClass("name")

• Adds CSS class name to each Also removeClass toggleClass• Adds CSS class name to each. Also removeClass, toggleClass– dojo.query("selector").wipeOut().play()

• Makes invisible. Also wipeIn, fadeOut, fadeIn, etc.dojo query("selector") onclick(function)– dojo.query( selector ).onclick(function)

• Adds onclick handler. Also onchange, onmouseover, etc.– dojo.query("selector").html("<tag>some html</tag>")

• Sets the innerHTML of each element• Sets the innerHTML of each element. – Must use dojo.require("dojo.NodeList-html");

– dojo.byId("some-id").value• Returns value of input element. Notice no “#”.Returns value of input element. Notice no # .

• Chaining– dojo.query("a").onclick(f1).addClass("name").forEach(f2)

14

Page 7: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Example: Randomizing Background Colors (JavaScript)Background Colors (JavaScript)

dojo.require("dojo.NodeList-fx");

Loads extra JavaScript on the fly.

The main two needed for basics apps are dojo.NodeList-fx and dojo.NodeList-html. The online docs tell you if a certain function necessitates a “dojo require” statement

Like smart window.onload. Explained in next

ti

dojo.addOnLoad(function() {

necessitates a “dojo.require” statement.section.

dojo.query("#button1").onclick(randomizeHeadings);dojo.query("#button2").onclick(revertHeadings);

});});

Sets onclick handlers

15

Example: Randomizing Colors (JavaScript Continued)(JavaScript Continued)function randomizeHeadings() {

dojo query("h3") forEach(setRandomStyle);

Call setRandomStyle function on each h3 element

dojo.query( h3 ).forEach(setRandomStyle);dojo.query("h3.green").wipeOut().play();

} Slowly hide every h3 that has CSS style “green”.Note difference from jQuery approach: wipeOut

function setRandomStyle(heading) {d j (h di ) ddCl ( d St l ())

returns an Animation, which you then call play on.

dojo.query(heading).addClass(randomStyle());}

Add “red”, “yellow” or “green” CSS names to each

16

Page 8: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Example: Randomizing Colors (JavaScript Continued)(JavaScript Continued)

function randomStyle() {var styles = ["red" "yellow" "green"];var styles = [ red , yellow , green ];return(randomElement(styles));

}

function randomElement(array) {var index = Math.floor(Math.random()*array.length);return(array[index]);return(array[index]);

}

function revertHeadings() {u ct o e e t ead gs() {dojo.query("h3.green").wipeIn().play();dojo.query("h3").removeClass("red")

.removeClass("yellow")( y )

.removeClass("green");}

17

Example: Randomizing Colors (Style Sheet)(Style Sheet).red { background-color: red }yellow { background-color: yellow }.yellow { background-color: yellow }.green { background-color: green }

Names set by setRandomStyles function

18

Page 9: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Example: Eclipse Setup

Servlet and auxiliary code called by Ajax examples.

Copied from Dojo download. To start with, you only need to load dojo/dojo.js. Other files brought in via dojo.require statements.j q

Written for next example in this chapter.

Written for this example.

Written for example in next chapter.

19

JSP pages called by Ajax examples.

Example: Randomizing Colors (HTML)(HTML)…<head><title>Dojo Basics</title><head><title>Dojo Basics</title><link rel="stylesheet"

href="./css/styles.css"type="text/css"/>

Core Dojo. The dojo.require statements cause on-the-fly loading of additional files.

type="text/css"/><script src="./scripts/dojo/dojo.js"

type="text/javascript"></script>< i t " / i t /d j b i j "<script src="./scripts/dojo-basics.js"

type="text/javascript"></script></head>

20

Page 10: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Example: Randomizing Colors (HTML Continued)(HTML Continued)…<h3>Foo bar baz</h3><h3>Foo, bar, baz</h3><h3>Blah, blah, blah</h3><h3>Yadda, yadda, yadda</h3><h3>Foo bar baz</h3><h3>Foo, bar, baz</h3><h3>Blah, blah, blah</h3><h3>Yadda, yadda, yadda</h3><h3>F b b </h3><h3>Foo, bar, baz</h3><h3>Blah, blah, blah</h3><h3>Yadda, yadda, yadda</h3>

#

The ids to which onclick handlers were attached.

<form action="#"><input type="button" id="button1"

value="Randomize Headings"/><input type="button" id="button2"

value="Revert Headings"/></form> …21

Example: Randomizing Colors (Results)(Results)

After “Randomize Headings”. Some headings turned green, then gradually disappeared.

22When page originally loaded, or after “Revert Headings”

Page 11: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Understanding Operations on Sets of ElementsSets of Elements

• Instead of thisfunction randomizeHeadings() {

dojo.query("h3").forEach(setRandomStyle);dojo query("h3 green") wipeOut() play();dojo.query("h3.green").wipeOut().play();

}function setRandomStyle(heading) {y ( g) {

dojo.query(heading).addClass(randomStyle());}

• Why can’t I simply do this?function randomizeHeadings() {

d j ("h3") ddCl ( d St l ())dojo.query("h3").addClass(randomStyle());dojo.query("h3.green").wipeOut().play();

}23

© 2009 Marty Hall

dojo.xhrGet: Basics

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

Page 12: The Dojo JavaScript Toolkit j p Part I: Ajax Support

dojo.xhrGet: Basic Syntax

• dojo.xhrGet(optionsObject)– Minimal form: dojo.xhrGet({url: "address", load: funct});

• Also dojo.xhrPost, dojo.xhrPut, dojo.xhrDelete, etc.

– Handler function gets response text Response text is– Handler function gets response text. Response text is considered a string unless you use handleAs option.

• Options for dojo.xhrGet({…})j ({ })– Almost-always used

• url, load

Other common options– Other common options• content, error, preventCache, handleAs

25

Data-Centric Ajax with and without Toolkitswithout Toolkits

• With basic JavaScriptfunction getRequestObject() {if (window.XMLHttpRequest) {return(new XMLHttpRequest());

} else if (window.ActiveXObject) { return(new ActiveXObject("Microsoft.XMLHTTP"));

} else { return(null); }}function sendRequest() {var request = getRequestObject();request.onreadystatechange = function() { someFunct(request); };

request.open("GET", "some-url", true);request.send(null);

}26

Page 13: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Data-Centric Ajax with and without Toolkitswithout Toolkits

• jQuery (handler passed response text)$.ajax({url: "address",

success: handlerFunct});

Prototype (handler passed response object)• Prototype (handler passed response object)new Ajax.Request("address",

{onSuccess: handlerFunct});

• Ext (handler passed response object)Ext.Ajax.request({url: "address",

success: handlerFunct});

• Dojo (handler passed response text)d j h G t({ l " dd "dojo.xhrGet({url: "address",

load: handlerFunct});

27

dojo.xhrGet Example Code: JavaScriptJavaScriptfunction showTime1() {

dojo xhrGet({dojo.xhrGet({ url: "show-time.jsp",load: showAlert,preventCache: true

});}

The preventCache option is not required, but is a convenient option when the same URL (including query data) yields different responses. This way, you don’t have to send Cache-Control and Pragma headers from

function showAlert(text) {alert(text);

server.

( );} This is the response text, but you can declare a

second argument (ioArgs) if you want the response object (XmlHttpRequest) and other information. Also note that the latest Firefox does not let you pass native functions here, so you cannot use alert instead

28

, yof showAlert for the success parameter.

Page 14: The Dojo JavaScript Toolkit j p Part I: Ajax Support

dojo.xhrGet Example Code: HTMLHTML…<head><title>Dojo and Ajax</title><head><title>Dojo and Ajax</title>...<script src="./scripts/dojo/dojo.js"

type="text/javascript"></script><script src=" /scripts/dojo ajax js"<script src="./scripts/dojo-ajax.js"

type="text/javascript"></script></head><b d ><body>...<fieldset>

<legend>dojo.xhrGet: Basics (Using explicit ) /onclick handler in HTML)</legend>

<form action="#"><input type="button" value="Show Time"

onclick="showTime1()"/></form>

</fieldset>…29

dojo.xhrGet Example Code: JSP

It is now <%= new java.util.Date() %>

30

Page 15: The Dojo JavaScript Toolkit j p Part I: Ajax Support

dojo.xhrGet : Results

31

Registering Event Handlers in JavaScriptJavaScript

• Basic approach– Previous example set the onclick handler in the HTML.

Although this is common with other Ajax libraries, Dojo (and jQuery) advocate setting it in the JavaScript instead(and jQuery) advocate setting it in the JavaScript instead

• Often referred to as “unobtrusive JavaScript”: no explicit JavaScript anywhere in the HTML page

• Dojo support• Dojo support– dojo.addOnLoad(function() {…});

• Function runs after the DOM is loaded, but does not wait ,for images, as with window.onload

• Use this approach to set up all event handlers

– dojo query("#some-id") onclick(someHandler);dojo.query( #some id ).onclick(someHandler);• Assigns onclick handler. Handler is passed a DOMEvent

with characteristics that are unified across browsers32

Page 16: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Redoing Time Alert: JavaScript

dojo.addOnLoad(function() {dojo query("#time button 1") onclick(showTime1);dojo.query("#time-button-1").onclick(showTime1);

});

function showTime1() {dojo.xhrGet({

url: "show-time.jsp",These two functions

load: showAlert,preventCache: true

});

These two functions are unchanged from previous example.

});}

function showAlert(text) {function showAlert(text) {alert(text);

}33

Redoing Time Alert: HTML

<fieldset>l d d j h G t i ( i t i<legend>dojo.xhrGet: Basics (Registering

onclick handler in JavaScript)</legend><form action="#">

<input type="button" value="Show Time"id="time-button-1"/>

</f ></form></fieldset>

34

Page 17: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Redoing Time Alert: Results

Works exactly the same as previous example

35

Works exactly the same as previous example.

© 2009 Marty Hall

dojo xhrGet:dojo.xhrGet:Sending Datag

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

Page 18: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Ajax Functions

• dojo.xhrGet({options})– Make a GET request

• dojo.xhrPost({options})M k POST– Make a POST request

• dojo.xhr("method", {options}, hasBody)Lets you send arbitrary HTTP commands– Lets you send arbitrary HTTP commands

• dojo.xhrPut, dojo.xhrDelete– Make a PUT or DELETE requestMake a PUT or DELETE request– Unsupported on many servers

• dojo.rawXhrPost, dojo.rawXhrPutj , j– Sends a POST or PUT request, but lets you provide the

raw data for the body of the request37

Overview

• dojo.xhrGet({ url: …, load: …, content: …});– Content value is an object: query string gets built out of

property names and URL-encoded property valuesO d f URL f j h G t• On end of URL for ajax.xhrGet; in POST body for dojo.xhrPost

• See later example for building the string automatically using the “form” option

• Works identically to “parameters” option in Prototype or “data” option in jQuerydata option in jQuery

• Examples– dojo.xhrGet({… content: { param1: "foo bar!", j ({ { p ,

param2: "baz"}});

38

Page 19: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Content Example: JavaScript

dojo.addOnLoad(function() {dojo query("#params-button-1") onclick(showParams1);dojo.query( #params button 1 ).onclick(showParams1);…

});

function showAlert(text) {alert(text);

}}

function showParams1() {dojo.xhrGet({

Same function used in earlier examples.

dojo. Get({url: "show-params.jsp",content: { param1: "foo",

param2: "bar" },p },load: showAlert

});}39

The preventCache option is not used since the same data always results in the same response.

Content Example: HTML

…<fi ld t><fieldset>

<legend>dojo.xhrGet: The 'content' Option</legend><form action="#">

<input type="button" value="Show Params"id="params-button-1"/>

</form></form></fieldset>…

40

Page 20: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Content Example: JSP

param1 is ${param.param1}, param2 is ${param param2}param2 is ${param.param2}.

41

Content Example: Results

42

Page 21: The Dojo JavaScript Toolkit j p Part I: Ajax Support

© 2009 Marty Hall

dojo.xhrGet: Options

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

Overview

• Options (almost) always used: url, load– dojo.xhrGet({url: "some-address", load: someFunc});

• load is not strictly required; you might want to just fire off some data to the server and not display anythingp y y g

• Options apply equally to dojo.xhrPost and others

• Common options: exampledojo.xhrGet({

url: "address", load: successHandlerFunction,,content: { param1: "foo bar", param2: "baz"},error: errorHandlerFunction,

tC h tpreventCache: true,handleAs: "json" });

44

Page 22: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Options

Name Description Default

t t D t t d t i th f bj t ith E tcontent Data to send to server, in the form on an object with param names and raw (non-escaped) param values. The object property names become request param names and property values get URL-encoded and become request param values. & and = inserted

t ti ll S t i th i t l d di

Empty

automatically. Sent in the appropriate place depending on whether it is GET or POST.

error Function to be called if request fails due to server error, expired timeout, or exception thrown from main response handler.

None

Function gets passed 2 args: the data returned from the server (formatted according to the handleAs property), and an ioArgs object. The ioArgs object has many properties, but most useful are args, query, url, and xhr.

form Id of a form whose fields will be serialized to form the query data.

None

handle Function to be called whether or not request was successful. M t t l d d ti

NoneMore common to use separate load and error properties.

handleAs The format in which to pass the response to the handler function. Legal values are text, json, xml, json-comment-optional, json-comment-filtered, and javascript.

"text"

45

Options (Continued)

Name Description Default

h d E t HTTP t h d t b t t th Nheaders Extra HTTP request headers to be sent to the server. None

load Function to be called if request succeeds. Function gets passed 2 args: the data returned from the server (formatted according to the handleAs property), and an ioArgs object. The ioArgs object

None

p p y), g j g jhas many properties, but most useful are args, query, url, and xhr.

preventCache Is browser prohibited from caching the page? Set to true if you use GET and you could get different responses back from the same data If true then the URL is appended with a

false

same data. If true, then the URL is appended with a dojo.preventCache parameter with a timestamp that changes with each request.

sync Should the request be synchronous? Use synchronous requests falsewith caution since they lock up the browser.

timeout Timeout in milliseconds. If request takes longer, the error handler will be called instead of the load handler.

Infinity

url The address to req est Sho ld be a relati e URL Noneurl The address to request. Should be a relative URL. None

46

Page 23: The Dojo JavaScript Toolkit j p Part I: Ajax Support

© 2009 Marty Hall

Inserting Results into HTML:Inserting Results into HTML:The “html” Function

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

Content-Centric Ajax with and without Toolkitswithout Toolkits

• jQueryfunction ajaxResult(address, resultRegion) {

$(resultRegion).load(address);}

• Prototypefunction ajaxResult(address, resultRegion) {

new Ajax.Updater(resultRegion, address);j p g}

• DojoN li it t f t t t i Aj R– No explicit support for content-centric Ajax. Response handler uses “html” to do the insert.

• Ext-JSfunction ajaxResult(address, resultRegion) {

Ext.get(resultRegion).load({ url: address});}48

Page 24: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Reading Textfield Values

1. Use dojo.byId("some-id").value– Note that there is no # before the ID, since you are not

doing a CSS match, but rather using a shortcut for document.getElementByIddocument.getElementById

– Also note that Dojo has no way of looking up values directly from a NodeList resulting from a Dojo query. I thi i l t t jQ ’ $("# id") l()I.e., nothing equivalent to jQuery’s $("#some-id").val().

2. Supply values to “content” propertyNo need to escape values first– No need to escape values first

• dojo.xhrGet({… content: { param1: dojo.byId("id1").value });

Sh t t• Shortcut– See upcoming section on “form” property

49

Ajax with HTML Insertion: JavaScript (Setup)JavaScript (Setup)dojo.require("dojo.NodeList-html");

dojo.addOnLoad(function() {dojo.query("#params-button-2")

li k( h P 2).onclick(showParams2);…

});

50

Page 25: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Ajax with HTML Insertion: JavaScript (Main Code)JavaScript (Main Code)function showParams2() {

dojo xhrGet({field1 and field2 are textfield ids (not names)

dojo.xhrGet({ url: "show-params.jsp",content: { param1: dojo.byId("field1").value,

param2: dojo byId("field2") value }param2: dojo.byId("field2").value },load: function(text) {

insertText(text, "#result1");}}

});} id of div whose innerHTML will become the result text.

function insertText(text, selector) {dojo.query(selector).html(text);

}

51

HTML Insertion: HTML Page

…<fieldset><fieldset>

<legend>dojo.xhrGet: HTML Insertion</legend><form action="#">

param1:param1:<input type="text" id="field1"/><br/>param2:param2:<input type="text" id="field2"/><br/><input type="button" value="Show Params"put type butto a ue S o a a s

id="params-button-2"/><h2 id="result1"></h2>

</form>/</fieldset>…

52

Page 26: The Dojo JavaScript Toolkit j p Part I: Ajax Support

HTML Insertion: JSP

param1 is ${param.param1}, param2 is ${param param2}param2 is ${param.param2}.

Unchanged from previous example

53

HTML Insertion: Results

54

Page 27: The Dojo JavaScript Toolkit j p Part I: Ajax Support

HTML Insertion: Comparing Prototype jQuery and DojoPrototype, jQuery, and Dojo

• Prototypefunction ajaxResult(address, resultRegion) {

new Ajax.Updater(resultRegion, address); }

• jQueryjQueryfunction ajaxResult(address, resultRegion) {

$(resultRegion).load(address); }

D j ( l d d j i )• Dojo (also need dojo.require)function ajaxResult(address, resultRegion)

dojo.xhrGet({ url: address,j ({ ,load: function(text) {

insertText(text, resultRegion);} }); }} }); }

function insertText(text, selector) {dojo.query(selector).html(text); }

55

© 2009 Marty Hall

Building Parameter StringsBuilding Parameter Strings Automatically with “form”

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

Page 28: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Using “form” Option

• Idea– You specify a form, and Dojo automatically builds query

string from all appropriate input elements.– The element names (not ids) become the param names– The element names (not ids) become the param names

• Syntax– dojo.xhrGet({ url: …, load: …, form: "some-id" });j G ({ , , });

• Note: no # before the id

• Advantages– One simple option, no matter how many input elements– Only takes values of active elements (e.g., unchecked

radio buttons or checkboxes are ignored)radio buttons or checkboxes are ignored)– Giving names to input elements is familiar to HTML

developers57

“form” Example: JavaScript

dojo.require("dojo.NodeList-html");

dojo.addOnLoad(function() {dojo.query("#params-button-3")

onclick(showParams3);.onclick(showParams3);…

});

function showParams3() {dojo.xhrGet({

url: "show-params.jsp",u : s o pa a s.jsp ,form: "form1",load: function(text) {

insertText(text, "#result2");( , # );}

});} …58

Page 29: The Dojo JavaScript Toolkit j p Part I: Ajax Support

“form” Example: HTML

…<fieldset><fieldset>

<legend>dojo.xhrGet: Simplifying Paramswith 'form'</legend>

<form action="#" id="form1"><form action= # id= form1 >param1:<input type="text" name="param1"/><br/><br/>param2:<input type="text" name="param2"/><br/>b /<input type="button" value="Show Params"

id="params-button-3"/><h2 id="result2"></h2>/

</form></fieldset> …

59

“form” Example: JSP

param1 is ${param.param1}, param2 is ${param param2}param2 is ${param.param2}.

Unchanged from previous examples

60

Page 30: The Dojo JavaScript Toolkit j p Part I: Ajax Support

“form” Example: Results

61

© 2009 Marty Hall

H dli JSON D tHandling JSON Data

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

Page 31: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Approach

• Server– Returns JSON object with no extra parens. E.g.:

• { cto: "Resig ", ceo: "Gates ", coo: "Ellison" }

• Code that calls dojo xhrGet• Code that calls dojo.xhrGet– Specifies “json” for handleAs. E.g.:

• dojo.xhrGet({url: address, load: handler, handleAs: "json"});j ({ j })

• Response handler– Receives JavaScript data as first argument. No need for

i “ l” M b ild HTML f l Eparsing or “eval”. Must build HTML from result. E.g.:• function handler(companyExecutives) {

dojo.query("#some-id").html("<b>Chief Technology Officer is " +

companyExecutives.cto + "</b>"); }63

JSON Example Code: Core JavaScriptJavaScript

dojo.require("dojo.NodeList-html");dojo addOnLoad( );dojo.addOnLoad(…);

function showNums() {dojo.xhrGet({ j ({url: "show-nums",handleAs: "json",load: showNumberList,preventCache: true

});} Strings

function showNumberList(jsonData) {var list = makeList(jsonData.fg, jsonData.bg,

jsonData fontSizejsonData.fontSize, jsonData.numbers);

dojo.query("#result3").html(list);}64

intArray of doubles

Page 32: The Dojo JavaScript Toolkit j p Part I: Ajax Support

JSON Example Code: Auxiliary JavaScriptJavaScriptfunction makeList(fg, bg, fontSize, nums) {

return(return(listStartTags(fg, bg, fontSize) +listItems(nums) +listEndTags());listEndTags());

}

f ti li tSt tT (f b f tSi ) {function listStartTags(fg, bg, fontSize) {return(

"<div style='color:" + fg + "; " +"background-color:" + bg + "; " +"font-size:" + fontSize + "px'>\n" +

"<ul>\n");}

65

JSON Example Code: Auxiliary JavaScript (Continued)JavaScript (Continued)function listItems(items) {

var result = "";var result = ;for(var i=0; i<items.length; i++) {

result = result + "<li>" + items[i] + "</li>\n";}}return(result);

}

function listEndTags() {return("</ul></div>");

}

66

Page 33: The Dojo JavaScript Toolkit j p Part I: Ajax Support

JSON Example Code: HTML

…<fi ld t><fieldset>

<legend>dojo.xhrGet: Treating Response as JSON</legend>

<form action="#"><input type="button" value="Show Nums"

id="nums-button"/>id nums button /><div id="result3"></div>

</form></fi ld t></fieldset>…

67

JSON Example Code: Servlet

public class ShowNumbers extends HttpServlet {public void doGet(HttpServletRequest request,

HttpServletResponse response)throws ServletException, IOException {

response.setHeader("Cache-Control", "no-cache");response.setHeader("Pragma", "no-cache");p ( g , )String fg = ColorUtils.randomColor();request.setAttribute("fg", fg);String bg = ColorUtils.randomColor();request.setAttribute("bg", bg);request.setAttribute( bg , bg);String fontSize = "" + (10 + ColorUtils.randomInt(30));request.setAttribute("fontSize", fontSize);double[] nums = { Math random() Math random() Math random() };{ Math.random(), Math.random(), Math.random() };

request.setAttribute("nums", nums);response.setContentType("application/json");String outputPage = "/WEB-INF/results/show-nums.jsp";RequestDispatcher dispatcher =RequestDispatcher dispatcher =request.getRequestDispatcher(outputPage);

dispatcher.include(request, response);}}

68

Page 34: The Dojo JavaScript Toolkit j p Part I: Ajax Support

JSON Example Code: JSP

{ fg: "${fg}",b "${b }"bg: "${bg}",fontSize: ${fontSize},numbers: [ ${nums[0]}, ${nums[1]}, ${nums[2]}][ { [ ]}, { [ ]}, { [ ]}]

}

Notes• Notes– No enclosing parens. Dojo will wrap in parens and then

pass to “eval” (or equivalent functionality)pass to eval (or equivalent functionality)– Types

• fg and bg: Stringsf tSi i t• fontSize: int

• numbers: Array of doubles

69

JSON Example Code: Auxiliary Java CodeAuxiliary Java Code

public class ColorUtils {private static String[] colors = {p g[] {"aqua", "black", "blue", "fuchsia", "gray", "green", "lime", "maroon", "navy", "olive", "purple", "red", "silver", "teal", "white", "yellow"

};};

/** A random number between 0 and range-1, inclusive. */

public static int randomInt(int range) {return(new Random().nextInt(range));

}

/** One of the official HTML color names, at random. */

public static String randomColor() {( l [ d ( l l h)])return(colors[randomInt(colors.length)]);

}}

70

Page 35: The Dojo JavaScript Toolkit j p Part I: Ajax Support

JSON Example: Results

71

© 2009 Marty Hall

Wrap-up

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.

Page 36: The Dojo JavaScript Toolkit j p Part I: Ajax Support

“Best” JavaScript Librariesp

• General JS programming • Traditional Ajax support– Leader: Prototype

• Other programming (Java)– Leader (only): GWT

– Tie

• Server communication– Leader: GWTLeader (only): GWT

• DOM manipulation– Leader: jQuery

Oth i jQ h d

Leader: GWT– 2nd tier: DWR, JSON-RPC

• Usage in industry• Others copying jQuery approach and

closing gap. jQuery released CSS matching library separately (http://sizzlejs.com)

– Leader: jQuery– 2nd tier: Ext-JS, Dojo, YUI,

Prototype, Scriptaculous, GWT

• Rich GUIs– Leaders: Ext-JS, YUI, Dojo– 2nd tier: jQuery UI GWT

• Looking ahead– All these entries are likely to

change significantly– 2 tier: jQuery UI, GWT

• Familiarity to JS developers– Lowest: GWT

c ge s g c y– Lurking on the horizon:

Google “Closure” library73

Books and References

• Dojo: The Definitive Guide– by Matthew A. Russell

• Mastering Dojo b C i Ri k l– by Craig Riecke et al

• Concise Guide to Dojo by Leslie M Orchard– by Leslie M. Orchard

• http://dojotoolkit.org/docs– Moderately completeModerately complete– Moderately well organized– Large number of explicit examples

74

Page 37: The Dojo JavaScript Toolkit j p Part I: Ajax Support

Summary

• Assigning event handlers programmaticallydojo.addOnLoad(function() {

dojo.query("#some-id").onclick(someFunction); });

• General Ajax requests (data-centric Ajax)dojo.xhrGet({ url: "relative-address",

load: handlerFunction,,form: "form-id,handleAs: "json" });

• Inserting HTML (content-centric Ajax)• Inserting HTML (content-centric Ajax)dojo.require("dojo.NodeList-html");dojo.xhrGet({ … (omit handleAs) … });f ti h dl F ti (t t) {function handlerFunction(text) {

dojo.query("#some-id").html(text);}

75

© 2009 Marty Hall

Questions?

Customized Java EE Training: http://courses.coreservlets.com/Servlets, JSP, Struts, JSF/MyFaces/Facelets, Ajax, GWT, Spring, Hibernate/JPA, Java 5 & 6.

Developed and taught by well-known author and developer. At public venues or onsite at your location.