What is the best resource you know to learn Dojo? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-09T02:50:55Z http://stackoverflow.com/feeds/question/65971 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo 11 What is the best resource you know to learn Dojo? Scott S. 2008-09-15T19:29:40Z 2009-01-13T01:49:08Z <p>The Dojo toolkit looks like it is very useful, but the docs feel very incomplete and buggy. Can anyone suggest a book or other resource to help a javascript novice really learn to use Dojo?</p> http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo/66424#66424 3 Answer by Yadyn for What is the best resource you know to learn Dojo? Yadyn 2008-09-15T20:07:38Z 2008-09-15T20:07:38Z <p>I've used Dojo for awhile now (though not since they changed to Dijit and all the 0.9/1.0 stuff). Mostly, I've been working with 0.4.x and I can tell you, aside from the <a href="http://dante.dojotoolkit.org/static/0.4/trunk/api/" rel="nofollow">API tool</a> and Googling problems, the best way to learn it is to look at the test pages (under the tests directory) and see how the examples were done (use View Source).</p> <p>Lately, when trying out a new widget, I've just been opening up the pertaining JS file and looking through it. Sometimes it can be really cryptic, but aside from being a great exercise in learning JavaScript, it's the best way to see how things tick and what's what. I barely even use the API tool as a result &mdash; if I want to know what attributes a widget understands, I usually go straight to the source code.</p> <p>But, yes, I too feel your pain. When first starting with it, it felt like everything was either undocumented or out of date due to its constantly changing nature. And now that 0.9/1.0 is out (and not backwards compatible) I'm doomed to re-learn things if I want to use a version newer than 0.4.x! Oh well...</p> http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo/66662#66662 2 Answer by stevemr for What is the best resource you know to learn Dojo? stevemr 2008-09-15T20:33:58Z 2008-09-15T20:33:58Z <p>I have "Dojo: The Definitive Guide" by Russell and "Dojo: Using the Dojo JavaScript Library to Build Ajax Applications" by Harmon I needed both books but once I had gone through the Harmon book I have not referred to it much, if at all. The Russell book, however, I have kept by my side and refer to it frequently. Harmon's book gave me an overall understanding and a quick way to use the toolkit. Russell's book takes you through the toolkit from zero knowledge of the toolkit. </p> http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo/67702#67702 14 Answer by rcoup for What is the best resource you know to learn Dojo? rcoup 2008-09-15T22:42:57Z 2008-09-15T22:42:57Z <p>There are a number of useful resources for <a href="http://dojotoolkit.org/" rel="nofollow">Dojo</a> out there...</p> <p><strong>Online documentation:</strong></p> <ul> <li><p><strong>Dojo Book:</strong> The <a href="http://dojotoolkit.org/book/dojo-book-1-0" rel="nofollow">online reference guide for Dojo</a> is pretty comprehensive, and is generally updated. During 2008, the docs will move to a more editable site at <a href="http://docs.dojocampus.org/" rel="nofollow">DojoCampus</a>.</p></li> <li><p><strong>API Reference:</strong> Want to know the attributes for customising a <code>ContentPane</code>? Or the parameter order for <code>dojo.connect()</code>? Hit the <a href="http://api.dojotoolkit.org/" rel="nofollow">Dojo API Reference</a> and look it all up. Commenting is available too so leave your experiences there.</p></li> <li><p><strong><a href="http://dojocampus.org/" rel="nofollow">Dojo Campus</a></strong> is the home of learning resources for Dojo. It includes a <a href="http://dojocampus.org/explorer" rel="nofollow">Feature Explorer</a>, the new <a href="http://docs.dojocampus.org/" rel="nofollow">Documentation</a>, podcasts, tutorials, and <a href="http://dojocampus.org/content/?cat=16" rel="nofollow">cookies</a> (helpful bite-size tips for Dojo)</p></li> <li><p><strong>Demos &amp; Tests</strong> are a great way to see how the different components can be used, combined, and customised. The <a href="http://archive.dojotoolkit.org/nightly/" rel="nofollow">online archive</a> has links to test pages, and they're also available in the downloads and checkouts under <code>&lt;dojo/dijit/dojox&gt;/&lt;module&gt;/tests/</code></p></li> <li><p><strong>Others:</strong> </p> <ul> <li>The <a href="http://sitepen.com/labs/toolbox/" rel="nofollow">Dojo Toolbox</a> is a desktop app which provides an offline version of the API reference and a number of other tools and links. </li> <li>The <a href="http://dojotoolkit.org/key-links" rel="nofollow">Key Links</a> page on the Dojo website links to lots of tutorials around the web.</li> </ul></li> </ul> <p><strong>Blogs:</strong></p> <ul> <li>The <a href="http://dojotoolkit.org/blog" rel="nofollow">Dojo project blog</a> covers what the contributors are working on, and what's new from the roject.</li> <li><a href="http://dojotoolkit.org/aggregator" rel="nofollow">Planet Dojo</a> collects Dojo and Javascript/web related blogs together in a handy aggregator for the wider community. </li> <li>SitePen employs a number of the Dojo developers, and have a fantastic blog which goes into the <a href="http://www.sitepen.com/blog/category/dojo/" rel="nofollow">nuts and bolts of new and exciting Dojo stuff</a>.</li> </ul> <p><strong>Books:</strong></p> <ul> <li><em><a href="http://rads.stackoverflow.com/amzn/click/0596516487" rel="nofollow">Dojo: The Definitive Guide</a></em> by Matthew Russell is a really comprehensive reference book on the core Dojo and Dijit libraries, but with plenty of background and useful additions so that its not just another API reference.</li> <li><em><a href="http://www.pragprog.com/titles/rgdojo/mastering-dojo" rel="nofollow">Mastering Dojo</a></em> explains how and why Dojo is put together the way it is put together the way it is, and gets into the guts of how it all works.</li> <li><em><a href="http://rads.stackoverflow.com/amzn/click/0132358042" rel="nofollow">Dojo: Using the Dojo JavaScript Library to Build Ajax Applications</a></em> is a really easy introduction to the toolkit to enable people who aren't overly familiar with the Web/Ajax/Javascript thing to get started.</li> <li>There are more books coming out in 2008/2009 so keep a look-out.</li> <li>A great <a href="http://alex.dojotoolkit.org/2008/06/books-its-raining-books/" rel="nofollow">discussion of the three Dojo books</a> by Alex Russell (Dojo's founder).</li> <li>The <a href="http://dojocampus.org/bookcorner/" rel="nofollow">Dojo Campus book corner</a></li> </ul> http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo/78894#78894 1 Answer by tuxedo for What is the best resource you know to learn Dojo? tuxedo 2008-09-17T01:22:17Z 2008-09-17T01:22:17Z <p>This afternoon I was running into a Dojo problem that just wouldn't budge. I boiled it down to a case that was simple enough to ask for help on the #dojo channel on the <a href="http://www.freenode.net/" rel="nofollow">FreeNode</a> IRC network. A Dojo developer took a look at my issue very quickly, determined that it was due to a bug in a recently-created interface, and brought the developer who had written that module into the conversation. There was a bug fix in the trunk within half an hour, and everything worked fine afterward.</p> <p>If you just can't get anywhere with the examples or the documentation, I'd recommend joining #dojo.</p> http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo/309883#309883 1 Answer by for What is the best resource you know to learn Dojo? 2008-11-21T19:25:11Z 2008-11-21T19:25:11Z <p>I recently bought <strong>Mastering Dojo</strong> by Rawld Gill, Craig Riecke, and Alex Russell (Publisher: The Pragmatic Programmers). It's without a doubt the best Dojo learning and reference out there.</p> http://stackoverflow.com/questions/65971/what-is-the-best-resource-you-know-to-learn-dojo/429668#429668 1 Answer by Chinnery for What is the best resource you know to learn Dojo? Chinnery 2009-01-09T20:46:56Z 2009-01-13T01:49:08Z <p>I have <strong>Mastering Dojo</strong> by Gill, Riecke and Russell, but I'm looking for something more information dense and less erroneous. For example, here's an error I noticed: </p> <blockquote> <p>"In good object-oriented frameworks, some built-in methods are meant for the programmer to call, and some are meant for the programmer to override. A good example of the latter is <em>compare</em> in Java. This method is defined at the root of the class tree (<em>Object</em>) and overridden in most of the built-in classes." (p. 329)</p> </blockquote> <p>I think they meant <em>equals</em>, not <em>compare</em>. See <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html#equals(java.lang.Object)" rel="nofollow">http://java.sun.com/j2se/1.3/docs/api/java/lang/Object.html#equals(java.lang.Object)</a></p> <p>Also, in the section explaining the widget lifecycle, <strong>Mastering Dojo</strong> does not mention the methods <em>destroyRecursive</em> and <em>uninitialize</em>. By contrast <strong>Dojo: The Definitive Guide</strong> does mention those methods, and explains all the lifecycle methods in more detail than <strong>Mastering Dojo</strong> does. </p> <p>Another thing I found disappointing about <strong>Mastering Dojo</strong> is that it's very "Pro-Dojo". It takes the viewpoint of a fervent Dojo advocate, rather than that of an even handed teacher. In and of itself this is not bad, but when one of the book's authors is a major Dojo code contributor, it makes me lose confidence in the book's objectivity. I mean, opening chapter one with this sentence strikes me as a bit arrogant/pretentious/biased/blind: </p> <blockquote> <p>There's a new king in town.</p> </blockquote>