Skip to main content

By clicking Submit, you agree to the developerWorks terms of use.

The first time you sign into developerWorks, a profile is created for you. Select information in your developerWorks profile is displayed to the public, but you may edit the information at any time. Your first name, last name (unless you choose to hide them), and display name will accompany the content that you post.

All information submitted is secure.

  • Close [x]

The first time you sign in to developerWorks, a profile is created for you, so you need to choose a display name. Your display name accompanies the content you post on developerworks.

Please choose a display name between 3-31 characters. Your display name must be unique in the developerWorks community and should not be your email address for privacy reasons.

By clicking Submit, you agree to the developerWorks terms of use.

All information submitted is secure.

  • Close [x]

Develop HTML widgets with Dojo

Get started with the Dojo toolkit 0.3

Igor Kusakov (igor@kusakov.com), Web client lead developer, IBM
Photo of Igor Kusakov
Igor Kusakov joined the IT world as a professional ten years ago, and has been involved in developing Web and distributed applications since the late nineties. Igor is currently a consultant and leads Ajax Dojo-based application development at IBM Rational. Igor's primary professional interests are Java development, Web project architectures, rich JavaScript-based browser clients, modern persistence frameworks, and tooling for efficient development. Along with having a bachelors degree in computer science, Igor is certified in Java, C++, and C programming.

Summary: 

In this in-depth introductory tutorial by Web application developer Igor Kusakov, you learn the basics of developing HTML widgets using Dojo; including how to refer an image, how to add an event handler to an HTML page, and how to handle composite widgets. Also, discover some important differences between plain old JavaScript-style coding versus using Dojo, and get tips for handling complex issues inherent in Web application development.

Note that this tutorial does not address the overall architecture of a Dojo application or the various Dojo packages. Since the Dojo toolkit is rapidly evolving, many issues discussed in the tutorial are subject to change.

Date:  14 Feb 2007 (Published 31 Oct 2006)
Level:  Intermediate PDF:  A4 and Letter (146 KB | 35 pages)Get Adobe® Reader®

Activity:  53780 views
Comments:  

Nested widgets

In this section, you'll look at techniques for dealing with user-specified nested widgets.

Static nested widgets

In some cases a user can specify nested widgets for the widget. The Dojo TabContainer and Tree widgets are good examples of this.

Listing 30 shows how a nested Button widget is specified for the HelloWorld widget by a programmer -- widget user in test.html


Listing 30. test.html: Sample static nested widget
                    
<html>
<head>
<script type="text/javascript" 
      src="dojoAjax/dojo.js"></script>
<script type="text/javascript">
   dojo.require("dojo.widget.HelloWorld"); 
   dojo.require("dojo.widget.Button");
</script>
</head>
<body>
   <div dojoType="HelloWorld">
      <div dojoType="Button"></div>
   </div>
</body>
</html>

In the simplest case, you need to define the isContainer widget parameter to be true, and define a containerNode attachment point in the HTML template. And that's it -- nested widgets will automatically render and add to your containerNode.


Listing 31. dojoAjax/src/widget/HelloWorld.js
                    
dojo.provide("dojo.widget.HelloWorld");
dojo.require("dojo.widget.HtmlWidget"); 

dojo.widget.defineWidget("dojo.widget.HelloWorld", dojo.widget.HtmlWidget, {
   isContainer: true,
   templateString: '<div><div dojoAttachPoint="containerNode">' 
      + '</div></div>'
});

The solution above is simple because it relies on default Dojo behavior. As soon as you need to do something more complex, however, you have to handle the children array (a standard widget field which holds all static nested widgets) in the postCreate() method.

In Listing 32, you not only add nested user-defined widgets to the containerNode, but you also add a list of nested widget types to the titleNode attachment point.


Listing 32. dojoAjax/src/widget/HelloWorld.js
                    
dojo.provide("dojo.widget.HelloWorld");
dojo.require("dojo.widget.HtmlWidget"); 

dojo.widget.defineWidget("dojo.widget.HelloWorld", dojo.widget.HtmlWidget, {
   isContainer: true,
   templateString: '<div><div dojoAttachPoint="titleNode"></div>' 
      + '<br/><div dojoAttachPoint="containerNode">'
      + '</div></div>',

   postCreate: function() {
      for(var i in this.children) {
         this._addRow(this.children[i]);
      }
   },

   _addRow: function(component) {
      this.titleNode.appendChild(
         document.createTextNode(component.widgetType));
      this.titleNode.appendChild(
         document.createElement("br"));
   }
});

Listing 33 defines a test.html that runs with the widget defined in Listing 32.


Listing 33. test.html: Multiple static nested widgets
                    
<html>
<head>
<script type="text/javascript" src="dojoAjax/dojo.js"></script>
<script type="text/javascript">
   dojo.require("dojo.widget.HelloWorld"); 
   dojo.require("dojo.widget.Button");
   dojo.require("dojo.widget.ContentPane");
</script>
</head>
<body>
   <div dojoType="HelloWorld">
   <div dojoType="Button"></div>
   <div dojoType="ContentPane"></div>
   </div>
</body>
</html>

See the Dojo toolkit's TabContainer and Tree widgets for a more useful example of handling nested widgets.


Adding nested widgets dynamically

Imagine a user wants to add Dojo widgets to the widget programmatically at runtime.

Remember the discussion of widget attributes and their dynamic setters? The fact that consistency between these two things is not architecturally enforced might be the biggest flaw of current Dojo widgets architecture. It is, of course, more flexible this way and not that critical; but it is annoying because you never know if there is a dynamic setter for a given attribute. Developers tend just to forget to add them, which greatly decreases the widget's usability.

With nested widgets you have the same issue -- they are added dynamically in a different way than statically. For dynamic addition, you need to use the addChild() method. Listing 34 shows a widget that handles both static and dynamic widget adding. Note that the reusable part is extracted in the _addRow() method. When overriding the addChild() method, you need to call its superclass as well.


Listing 34. dojoAjax/src/widget/HelloWorld.js
                    

dojo.provide("dojo.widget.HelloWorld");
dojo.require("dojo.widget.HtmlWidget"); 
dojo.widget.defineWidget("dojo.widget.HelloWorld", dojo.widget.HtmlWidget, {
   isContainer: true,
   templateString: '<div><div dojoAttachPoint="titleNode"></div>' 
      + '<br/><div dojoAttachPoint="containerNode">'
      + '</div></div>',

   postCreate: function() {
      // adding statically
      for(var i in this.children) {
         this._addRow(this.children[i]);
      }
   },
   addChild: function(child, overrideContainerNode, 
         pos, ref, insertIndex) {
      this._addRow(child);
      dojo.widget.HelloWorld.superclass.addChild.call(
         this, child, overrideContainerNode); 
   },
   _addRow: function(component) {
      this.titleNode.appendChild(
         document.createTextNode(component.widgetType));
      this.titleNode.appendChild(
         document.createElement("br"));
   }
});

Listing 35 shows how to create a Button widget and dynamically add it to the widget in Listing 34.


Listing 35. test.html: Adding nested widgets dynamically
                    
<html>
<head>
<script type="text/javascript" src="dojoAjax/dojo.js"></script>
<script type="text/javascript">
   dojo.require("dojo.widget.HelloWorld");
   dojo.require("dojo.widget.Button");

   dojo.addOnLoad(function(){
      var button = dojo.widget.createWidget("Button", 
         {caption: "Submit"});
      dojo.widget.byId('someID').addChild(button);
   });

</script>
</head>
<body>
   <div id="someID" dojoType="HelloWorld">
   </div>
</body>
</html>

9 of 15 | Previous | Next

Comments



Help: Update or add to My dW interests

What's this?

This little timesaver lets you update your My developerWorks profile with just one click! The general subject of this content (AIX and UNIX, Information Management, Lotus, Rational, Tivoli, WebSphere, Java, Linux, Open source, SOA and Web services, Web development, or XML) will be added to the interests section of your profile, if it's not there already. You only need to be logged in to My developerWorks.

And what's the point of adding your interests to your profile? That's how you find other users with the same interests as yours, and see what they're reading and contributing to the community. Your interests also help us recommend relevant developerWorks content to you.

View your My developerWorks profile

Return from help

Help: Remove from My dW interests

What's this?

Removing this interest does not alter your profile, but rather removes this piece of content from a list of all content for which you've indicated interest. In a future enhancement to My developerWorks, you'll be able to see a record of that content.

View your My developerWorks profile

Return from help

static.content.url=http://www.ibm.com/developerworks/js/artrating/
SITE_ID=1
Zone=Web development, Java technology, Open source
ArticleID=171206
TutorialTitle=Develop HTML widgets with Dojo
publish-date=02142007
author1-email=igor@kusakov.com
author1-email-cc=htc@us.ibm.com, ikusakov@ca.ibm.com

Tags

Help
Use the search field to find all types of content in My developerWorks with that tag.

Use the slider bar to see more or fewer tags.

Popular tags shows the top tags for this particular content zone (for example, Java technology, Linux, WebSphere).

My tags shows your tags for this particular content zone (for example, Java technology, Linux, WebSphere).

Use the search field to find all types of content in My developerWorks with that tag. Popular tags shows the top tags for this particular content zone (for example, Java technology, Linux, WebSphere). My tags shows your tags for this particular content zone (for example, Java technology, Linux, WebSphere).

Try IBM PureSystems. No charge.