Home > Store

Dojo: Using the Dojo JavaScript Library to Build Ajax Applications

Register your product to gain access to bonus material or receive a coupon.

Dojo: Using the Dojo JavaScript Library to Build Ajax Applications

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2008
  • Dimensions: 7" x 9"
  • Edition: 1st
  • Book
  • ISBN-10: 0-13-235804-2
  • ISBN-13: 978-0-13-235804-0

Dojo offers Web developers and designers a powerful JavaScript toolkit for rapidly developing robust Ajax applications. Now, for the first time, there’s a complete, example-rich developer’s guide to Dojo and its growing library of prepackaged widgets. Reviewed and endorsed by the Dojo Foundation, the creators of Dojo, this book brings together all the hands-on guidance and tested code samples you need to succeed.

Expert Web developer James E. Harmon begins by demonstrating how to “Ajax-ify” existing applications and pages with Dojo, adding Ajax features such as client- and server-side validation as quickly and nondisruptively as possible. Next, he presents in-depth coverage of Dojo’s user interface, form, layout, and specialized Widgets, showing how they work and how to use them most effectively. Among the Widgets, he covers in detail: Date Pickers, Rich Text Editors, Combo Boxes, Expandable Outlines, and many others.

In conclusion, Harmon introduces the Dojo toolkit’s powerful capabilities for simplifying Ajax development. He thoroughly explains Dojo’s helper functions, shortcuts, and special methods, illuminating each feature with examples of the JavaScript problems it can solve. This section’s far-ranging coverage includes strings, JSON support, event handling, Ajax remoting, Dojo and the DOM, testing, debugging, and much more. All source code examples are provided on a companion Web site, including source code for a complete tutorial case study application.

Downloads

Source Code

The source code is available at: http://www.objecttraininggroup.com/.

Sample Content

Online Sample Chapter

Using Dojo for Client-side Validation

Sample Pages

Download the sample pages

Table of Contents

Foreword xiii

Acknowledgments xv

About the Author xvi

I: A Dojo Tutorial

    1 Understanding Dojo: A Tutorial 3

        1.1 Introduction to the Tutorial 3

            1.1.1 Goals for this Tutorial 4

            1.1.2 Goals for Using Dojo 4

        1.2 A Standard HTML Data Entry Form 5

            1.2.1 First and Last Name 6

            1.2.2 User Name 7

            1.2.3 Email Address 8

            1.2.4 Address 8

            1.2.5 State 8

            1.2.6 City 10

            1.2.7 Zip Code 10

            1.2.8 Service Date 11

            1.2.9 Comments 11

        1.3 The Plan for Enhancing the Form 12

            1.3.1 Including Dojo in the Form 12

            1.3.2 Adding Client-side Validation 13

            1.3.3 Adding Server-side Features 13

            1.3.4 Using Additional Specialized Dojo Widgets 13

            1.3.5 Processing the Form 14

        1.4 Getting and Running the Source Code 14

        1.5 Tutorial Step 1–Including Dojo 15

            1.5.1 Download or Create the Source Files 15

            1.5.2 Include the Code for the Dojo Toolkit 19

            1.5.3 Include Dojo Style Sheets 20

            1.5.4 Review All the Code Changes 21

            1.5.5 Run the New Page 22

    2 Using Dojo for Client-side Validation 25

        2.1 Validating Form Fields 25

        2.2 Tutorial Step 2–Adding Client-side Validation 26

            2.2.1 Validate the First Name Field 27

            2.2.2 Validating the Last Name Field 30

            2.2.3 Validating the User Name Field 31

            2.2.4 Validating the Email Address Field 31

            2.2.5 Validating the Address Field 32

            2.2.6 Validating the City Field 33

            2.2.7 Validating the Zip Code Field 33

    3 Using Dojo to Work with the Server 35

        3.1 Adding Server-side Features 35

        3.2 Tutorial Step 3a–Adding Server-side Validation 36

            3.2.1 Assign Event Handler Function 36

            3.2.2 Make a Call to the Server 38

        3.3 Tutorial Step 3b–Retrieving Data from the Server 43

            3.3.1 Select Appropriate Widget for the City Field 43

            3.3.2 Get the Value of State and Send to the Server 45

    4 Using Dojo Widgets 51

        4.1 Adding Dojo Widgets to the Page 51

            4.1.1 Dijit–The Dojo Widget Module 52

        4.2 Tutorial Step 4–Using Dojo Widgets 52

            4.2.1 Use the Dojo DateTextBox Widget 53

            4.2.2 Use the Dojo Rich Text Editor Widget 55

    5 Processing Forms with Dojo 59

        5.1 Using Dojo to Process Forms 59

        5.2 Tutorial Step 5–Processing the Form 60

            5.2.1 Creating a Dojo Form Widget 60

            5.2.2 Intercept Form Submission 61

            5.2.3 Check That All Form Elements Are Valid 62

            5.2.4 Submitting the Form to the Server 63

II: Dojo Widgets

    6 Introduction to Dojo Widgets 67

        6.1 What Are Widgets? 67

        6.2 What Are Dojo Widgets? 68

        6.3 Components of a Dojo Widget 70

            6.3.1 Widget HTML 70

            6.3.2 Widget Styles 74

            6.3.3 JavaScript Component of a Widget 76

            6.3.4 Dojo Widget Hierarchy 78

            6.3.5 Visual Overview of Dojo Widgets 83

            6.3.6 Building Your Own Widgets 90

    7 Dojo Form Widgets 91

        7.1 Standard Forms and Dojo Form Widgets 91

            7.1.1 The dijit.form._FormWidget Class 92

        7.2 The Dojo Form Widget Explained 94

    8 Dojo Layout Widgets 137

        8.1 Understanding Page Layout 137

            8.1.1 The dijit.layout._LayoutWidget Class 138

        8.2 Explanation of Dojo Layout Widgets 139

    9 Other Specialized Dojo Widgets 155

        9.1 What Are Specialized Widgets? 155

        9.2 Menu Widget 156

            9.2.1 dijit.Menu 157

            9.2.2 dijit.MenuItem 157

            9.2.3 dijit.MenuSeparator 157

            9.2.4 dijit.PopupMenuItem 158

III: Dojo in Detail

    10 What Is Dojo? 189

        10.1 History of JavaScript and AJAX 189

        10.2 History of Dojo 191

        10.3 Purpose of Dojo 191

        10.4 Description of Dojo 192

        10.5 What Problems Does Dojo Solve? 193

        10.6 Who Should Use Dojo? 194

        10.7 Licensing 195

        10.8 Competitors and Alternatives 195

        10.9 The Future of Dojo 197

    11 Technical Description of Dojo 199

        11.1 What You Get in the Dojo Download 199

        11.2 Organization of Dojo Source Code 201

            11.2.1 First-level Directories 201

            11.2.2 Digging Deeper into the Dojo Directory 202

        11.3 Dojo Modules and Features 203

            11.3.1 Naming Conventions and Name Space 204

            11.3.2 Dojo Base Module 205

            11.3.3 Dojo Core Modules 217

    12 Objects and Classes 223

        12.1 Objects Explained 223

            12.1.1 Creating Objects 224

            12.1.2 Encapsulation 224

            12.1.3 Object Templates 225

            12.1.4 JavaScript Prototypes 227

        12.2 Using Dojo to Work with Objects 228

            12.2.1 Dojo Function: dojo.declare 229

        12.3 Defining a Class 229

            12.3.1 Superclasses and Inheritance 231

            12.3.2 API for dojo.declare 231

            12.3.3 Other Dojo Functions 233

            12.3.4 Object Graphs and Dot Notation 234

    13 Strings and JSON 239

        13.1 Text Strings 239

            13.1.1 Dojo Function: dojo.string.pad 240

            13.1.2 Usage Example for dojo.string.pad 241

            13.1.3 Dojo Function: dojo.string.substitute 241

            13.1.4 Usage Example for dojo.string.substitute 243

        13.2 JSON 244

            13.2.1 Dojo Function: dojo.toJson 246

            13.2.2 Usage Example for dojo.toJson 246

            13.2.3 Dojo Function: dojo.fromJson 247

    14 Events and Event Handling 249

        14.1 Description of the Event Model 249

            14.1.1 What Are Events? 250

            14.1.2 Additional Dojo Events 251

        14.2 Defining and Assigning Event Handlers 252

            14.2.1 Using dojo.connect to Assign Event Handlers 252

            14.2.2 Usage Example for Assigning Event Handlers 253

        14.3 Representing an Event as an Object 254

        14.4 Using Aspect Oriented Programming in Dojo 256

    15 Ajax Remoting 259

        15.1 Remoting 259

        15.2 Review of XMLHttpRequest (or XHR for Short) 260

        15.3 The dojo.xhrGet Function 261

            15.3.1 Parameters in Detail 264

        15.4 dojo.xhrPost 264

            15.4.1 Usage Example–Error Handling 268

        15.5 Working with Forms 269

            15.5.1 Dojo Function dojo.formToObject 270

            15.5.2 Dojo Function dojo.objectToQuery 271

            15.5.3 Dojo Function dojo.formToQuery 272

            15.5.4 Dojo Function dojo.formToJson 274

            15.5.5 Dojo Function dojo.queryToObject 274

    16 Working with the DOM 277

        16.1 Finding Needles in the DOM Haystack 277

        16.2 Dojo Query 278

            16.2.1 CSS Selectors 279

            16.2.2 Using Selectors in dojo.query 282

            16.2.3 Using DOM Elements Found by dojo.query 283

        16.3 Animation 283

            16.3.1 Understanding Animation 283

            16.3.2 Dojo Animation Function 285

            16.3.3 Standard Animation Effects 286

    17 Testing and Debugging 293

        17.1 Testing 293

            17.1.1 Unit Testing 294

            17.1.2 DOH–The Dojo Unit Testing Framework 294

            17.1.3 Other Types of Testing 298

        17.2 Logging 298

            17.2.1 Basic Logging 299

            17.2.2 Advanced Logging 300

Index 303

Updates

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020