You Are Here:

Community: Wiki

This page was last modified on 15 December 2009, at 10:28.

Simple Web Runtime Design Patterns Using Dojo

From Forum Nokia Wiki


Contents

Simple Web Runtime Design Patterns Using Dojo

Tip: Also see the Simple Web Runtime Design Patterns Using jQuery

Tip: Also see the Simple Web Runtime Design Patterns Using Mootools

Tip: Also see the Simple Web Runtime Design Patterns Using YUI 3

Introduction to design patterns using Dojo Design patterns are “known solutions to common design problems”. The following design patterns make use of the Dojo JavaScript™ library and are intended for designers and developers working with Web Runtime (WRT) and the S60 mobile browser.

Of all the Ajax-specific frameworks that have popped up in recent years, one clearly stands out as the industrial strength solution. Dojo is not just another JavaScript toolkit -- it's the JavaScript toolkit -- and Dojo: The Definitive Guide demonstrates how to tame Dojo's extensive library of utilities so that you can build rich and responsive web applications like never before (Definitive-Guide).

Tip: If you’re new to Dojo, why not spend a few minutes exploring docs.dojocampus.org

Note: The following examples have been tested on the 5th Edition, N97. Support for Dojo will vary amongst 3rd Edition devices.

1. Show/Hide design pattern

Problem summary A user must interact with multiple views of an application yet only one view can be visible on-screen at a time.

Use

• To switch views within the widget.

• To show and hide elements within a view.

• Within a tabbed interface; to show and hide tabbed views.


Solution Provide a user or system-initiated trigger to instantly show or hide views or elements within the widget.

Image:01-hide.png

Figure: This widget has two views yet only one can be active at a time.

Use the Dojo to change the view display type between none & block, note that the same style method can be used for reading the current value.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/dojo.xd.js"
djConfig="parseOnLoad: true">
</script>
<script type="text/javascript">
 
function myinit(){
dojo.connect(dojo.byId('btn_list'),'onclick',function(){
dojo.style("detail","display", 'none')
dojo.style("list","display", 'block')
});
 
dojo.connect(dojo.byId('btn_detail'),'onclick',function(){
dojo.style("detail","display", 'block')
dojo.style("list","display", 'none')
});
 
dojo.connect(dojo.byId('btn_toggle'),'onclick',function(){
 
if(dojo.style("detail","display") == 'block'){
dojo.style("detail","display", 'none')
dojo.style("list","display", 'block')
}else{
dojo.style("detail","display", 'block')
dojo.style("list","display", 'none')
}
});
 
dojo.style("detail","display", 'none')
dojo.style("list","display", 'block')
}
 
dojo.addOnLoad( myinit );
</script>
<style type="text/css">
div {
height: 5em;
display: none; }
div#list {
background:#f00; }
div#detail {
background:#0f0; }
</style>
</head>
<body>
<button id="btn_list">List</button>
<button id="btn_detail">Detail</button>
<button id="btn_toggle">Toggle</button>
<div id="list">
<h1>List View</h1>
</div>
 
<div id="detail">
<h1>Detail View</h1>
</div>
</body>
</html>

WRT Widget for the example code can be found from File:Toggle Dojo.zip

2. Slide transition

Problem summary Abrupt changes in view or state are uncomfortable and often disorienting to the user.

Use

• To gradually hide an item within a view.


Solution Create a connection between the original and final view (or state) through use of an animated transition.

Image:02-slide.png

Figure: The slide transition is used to gradually close the content area.


Use the Dojo’s animateProperty and change the height if the item for the Effects.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/dojo.xd.js"
djConfig="parseOnLoad: true">
</script>
<script type="text/javascript">
 
function slideIt(){
 
dojo.animateProperty({ node: "slide", duration:2000,
properties: {
height: { start:'100', end: '0', unit:"px" },
}
}).play();
}
 
function slideItBack(){
 
dojo.animateProperty({ node: "slide", duration:2000,
properties: {
height: { start:'0', end: '100', unit:"px" },
}
}).play();
}
 
function myinit(){
dojo.connect(dojo.byId('btn_slide'),'onclick',slideIt);
dojo.connect(dojo.byId('btn_reset'),'onclick',slideItBack);
}
 
dojo.addOnLoad( myinit );
</script>
<style type="text/css">
div {
height: 100px;
background: #f00; }
</style>
</head>
<body>
<button id="btn_slide">Slide</button>
<button id="btn_reset">Reset</button>
<div id="slide"></div>
<h1>Slide</h1>
</body>
</html>

WRT Widget for the example code can be found from File:Slide Dojo.zip

3. Fade in/out

Problem summary Abrupt changes in view are uncomfortable and often disorienting to the user.

Use

• When transitioning between widget views.

• To attract attention to, yet smooth out the loading of new data, images or other media.


Solution Incorporate a transition to gradually fade the visibility of an element into or out of view.

Image:03-fade.png

Figure: The transition is used to gradually fade out View 1 and fade in View 2.

Use the Dojo’s fadeIn / fadeout methods for the Effects.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/dojo.xd.js"
djConfig="parseOnLoad: true">
</script>
<script>
 
//Function linked to the button to trigger the fade.
function fadeIt() {
 
var fadeArgs1 = {
node: "list",
duration: 1000,
};
 
var fadeArgs2 = {
node: "detail",
duration: 1000,
};
 
if (dojo.style("list", "opacity") < 1) {
dojo.fadeIn(fadeArgs1).play();
dojo.fadeOut(fadeArgs2).play();
}else {
dojo.fadeOut(fadeArgs1).play();
dojo.fadeIn(fadeArgs2).play();
}
}
 
function myinit(){
dojo.connect(dojo.byId('btn_fade'),'onclick',fadeIt);
}
 
dojo.addOnLoad( myinit );
</script>
<style type="text/css">
div {
display: block; }
div#list {
height: 100px;
width: 150px;
position:absolute;
top: 50px;
background:#f00; }
div#detail {
height: 100px;
width: 150px;
position:absolute;
top: 50px;
background:#0f0;
opacity: 0;}
</style>
</head>
<body>
<button id="btn_fade">Fade Transition</button>
<div id="list">
<h1>List View</h1>
</div>
<div id="detail">
<h1>Detail View</h1>
</div>
</body>
</html>

WRT Widget for the example code can be found from File:FadeOut Dojo.zip

4. Expand/Collapse

Problem summary Users require access to content or functionality but they only need it under certain circumstances and/or there is insufficient space to provide all of it at all times.

Use

• To reveal or obscure additional content associated with an element.

• Within a messaging application, to temporarily collapse non-critical information such as sender address, date, persons Ccd. etc.

• When needing to view content (i.e. text, images) that is currently represented in a thumbnail view.

• When making content editable. Ex. Expand a text field to allow for more visible content while editing.


Solution Hide a portion of this information then provide the user with a means to trigger the reveal of this information when required. This action should be easily discoverable, easy to trigger and the reveal should (ideally) occur in context of the original data.

Image:04-collapse.png

Figure: The area is expanded to reveal additional content.

Use the animateProperty method within Dojo to increase or decrease the element’s ‘height’ attribute values over the duration specified (in milliseconds).

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.3/dojo/dojo.xd.js"
djConfig="parseOnLoad: true">
</script>
<script>
 
function expandIt(){
 
dojo.animateProperty({ node: "item", duration:2000,
properties: {
height: { start:'40', end: '200', unit:"px" },
}
}).play();
}
 
function collapseIt(){
 
dojo.animateProperty({ node: "item", duration:2000,
properties: {
height: { start:'200', end: '40', unit:"px" },
}
}).play();
}
 
function myinit(){
dojo.connect(dojo.byId('btn_expand'),'onclick',expandIt);
dojo.connect(dojo.byId('btn_collapse'),'onclick',collapseIt);
}
 
dojo.addOnLoad( myinit );
</script>
<style type="text/css">
p, h1 {
padding: 0; margin: 0; }
div#item {
height: 40px;
background:#f00;
overflow: hidden; }
div#more {
background:#0f0; }
</style>
</head>
<body>
<button id="btn_expand">Expand</button>
<button id="btn_collapse">Collapse</button>
<div id="item">
<h1>Header</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.
Maecenas lorem. Duis pellentesque. Cras nec tortor vel lacus fermentum facilisis. Nam id pede eu eros posuere cursus. Mauris dolor ligula, eleifend vitae, aliquam sit amet, bibendum vel, est. Cras sit amet augue sit amet ligula cursus scelerisque.</p>
</div>
<div id="more">
<h1>More...</h1>
</div>
</body>
</html>

WRT Widget for the example code can be found from File:ExpandCollapse Dojo.zip

Related Wiki Articles

No related wiki articles found

Rate This

 
Bookmark this page: DeliciousDiggFacebookGoogleYahooStumbleUponRedditDiigoTechnocratiTwitter  Share this page Share this page Print this Page Print this page Invite a friend Invite a friend
京ICP备05048969号    Email Newsletters Press Terms & Conditions Privacy Policy Sitemap Contact Us © 2010 Nokia 
RDF Facets: qdcZdescriptionQSxEa0E20WikiE20javaE20symbianE5fosE20s60E20maemoE20cE2bE2bE20WikiE20HomeE20WikiE20HelpE20OverviewE20GlossaryE20CreateE20PageE20ProposeE20anE20ArticleE20SpotlightE20TopicE20E2dE20WE52TE20WidgetsE20ProgrammingE20E4canguageE20E2dE20SymbianE20CE2bE2bE20E2dE20OpenE20CE2fCE2bE2bE20E2dE20JavaE20E2dE20FlashE20E4citeE20E2dE20PythonE20WebE20TechnologiesE20E2dE20WE52TE20WidgetsE20E2dE20WidSetsE20ToolsE20andE20SE44KE20CodeE20E45E78amplesE20KnowledgeE20BaseE20TechnologyE20AreasE20SoftwareE20PlatformsE20E44evelopmentE20ProcessE20E3fE3fWikiE20ChineseE20E3fE3fE3fWikiE20JapaneseE20PortugueseE2fBrazilianE20E52ussianE20WhatE20linksE20hereE20UploadE20fileE20SpecialE20pagesE20PrintableE20versionE44ownloadE20asE20PE44FE20GoE20ToE20E2eE2eE2eX qdcZidentifierQSxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2findeE78E2ephpE2fHowE5ftoE5fuseE5fE52E44ebugX qdcZpublisherQUxhttpE3aE2fE2fswE2enokiaE2ecomE2fidE2fc764fd1cE2d8b06E2d499aE2d9a6aE2d17c3903d5a65E2fforumE5fnokiaE5fcrawlerE5fagentX qdcZtitleQSxHowE20toE20useE20E52E44ebugE20E2dE20ForumE20NokiaE20WikiX qdcZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qdcZtypeQUqfnTypeZCommunityContentQ qdcZtypeQUqfnTypeZE52esourceQ qdcZtypeQUqfnTypeZWebpageQ qdcZtypeQUqfnTypeZWikiContentQ qdcZtypeQUqmarsZManagedE52esourceQ qdcZtypeQUqwebZInformationE52esourceQ qdcZtypeQUqwebZPageQ qdcZtypeQUqwebZE52esourceQ qdcZtypeQUqrdfsZE52esourceQ qrssZdescriptionQSxEa0E20WikiE20javaE20symbianE5fosE20s60E20maemoE20cE2bE2bE20WikiE20HomeE20WikiE20HelpE20OverviewE20GlossaryE20CreateE20PageE20ProposeE20anE20ArticleE20SpotlightE20TopicE20E2dE20WE52TE20WidgetsE20ProgrammingE20E4canguageE20E2dE20SymbianE20CE2bE2bE20E2dE20OpenE20CE2fCE2bE2bE20E2dE20JavaE20E2dE20FlashE20E4citeE20E2dE20PythonE20WebE20TechnologiesE20E2dE20WE52TE20WidgetsE20E2dE20WidSetsE20ToolsE20andE20SE44KE20CodeE20E45E78amplesE20KnowledgeE20BaseE20TechnologyE20AreasE20SoftwareE20PlatformsE20E44evelopmentE20ProcessE20E3fE3fWikiE20ChineseE20E3fE3fE3fWikiE20JapaneseE20PortugueseE2fBrazilianE20E52ussianE20WhatE20linksE20hereE20UploadE20fileE20SpecialE20pagesE20PrintableE20versionE44ownloadE20asE20PE44FE20GoE20ToE20E2eE2eE2eX qfnZdistributionQUxhttpE3aE2fE2fwikiE2eforumE2enokiaE2ecomE2fX qfnZtypeQUqfnTypeZCommunityContentQ qfnZtypeQUqfnTypeZE52esourceQ qfnZtypeQUqfnTypeZWebpageQ qfnZtypeQUqfnTypeZWikiContentQ qfnZupdatedQDx2008E2d10E2d03X qmarsZdescriptionQSxEa0E20WikiE20javaE20symbianE5fosE20s60E20maemoE20cE2bE2bE20WikiE20HomeE20WikiE20HelpE20OverviewE20GlossaryE20CreateE20PageE20ProposeE20anE20ArticleE20SpotlightE20TopicE20E2dE20WE52TE20WidgetsE20ProgrammingE20E4canguageE20E2dE20SymbianE20CE2bE2bE20E2dE20OpenE20CE2fCE2bE2bE20E2dE20JavaE20E2dE20FlashE20E4citeE20E2dE20PythonE20WebE20TechnologiesE20E2dE20WE52TE20WidgetsE20E2dE20WidSetsE20ToolsE20andE20SE44KE20CodeE20E45E78amplesE20KnowledgeE20BaseE20TechnologyE20AreasE20SoftwareE20PlatformsE20E44evelopmentE20ProcessE20E3fE3fWikiE20ChineseE20E3fE3fE3fWikiE20JapaneseE20PortugueseE2fBrazilianE20E52ussianE20WhatE20linksE20hereE20UploadE20fileE20SpecialE20pagesE20PrintableE20versionE44ownloadE20asE20PE44FE20GoE20ToE20E2eE2eE2eX qmarsZlanguageQUxhttpE3aE2fE2fswE2enokiaE2ecomE2flanguageE2d1E2fenX qrdfZtypeQUqfnZE45E78cludedFromGeneralE4cistingsQ qrdfZtypeQUqfnTypeZCommunityContentQ qrdfZtypeQUqfnTypeZE52esourceQ qrdfZtypeQUqfnTypeZWebpageQ qrdfZtypeQUqfnTypeZWikiContentQ qrdfZtypeQUqmarsZManagedE52esourceQ qrdfZtypeQUqwebZInformationE52esourceQ qrdfZtypeQUqwebZPageQ qrdfZtypeQUqwebZE52esourceQ qrdfZtypeQUqrdfsZE52esourceQ