User Eugene Lazutkin - Stack Overflowmost recent 30 from stackoverflow.com2009-12-23T07:02:42Zhttp://stackoverflow.com/feeds/user/26394http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1948796/why-arent-these-dojo-hover-events-working/1949079#19490790Answer by Eugene Lazutkin for Why aren't these Dojo hover events working?Eugene Lazutkin2009-12-22T20:53:55Z2009-12-22T20:53:55Z<p><code>dojo.query()</code> returns a NodeList. <code>dojo.addClass()</code> and the rest work with DOM nodes.</p>
<p>Try something like that:</p>
<pre><code>dojo.addOnLoad(function() {
dojo.query('#primary-nav > ul > li > div').forEach(function(container) {
var hoverToggles = dojo.query('> a, > ul', container),
link = dojo.query('> a', container);
link.onmouseover(function() {
hoverToggles.addClass('hover');
});
link.onmouseout(function() {
hoverToggles.removeClass('hover');
});
});
});
</code></pre>
http://stackoverflow.com/questions/1913957/dojo-1-4-ie-8-dojox-charting-label-not-shown-dojox-gfx/1919644#19196440Answer by Eugene Lazutkin for Dojo 1.4 - IE 8 dojox.charting label not shown -> dojox.gfxEugene Lazutkin2009-12-17T05:24:22Z2009-12-17T05:24:22Z<p>It looks like some IE8 fix pushed by MS broke it because we didn't modify this code for a long time.</p>
<p>In any case there is a ticket for this problem (reported as a charting ticket): <a href="http://bugs.dojotoolkit.org/ticket/10491" rel="nofollow">http://bugs.dojotoolkit.org/ticket/10491</a></p>
<p>One simple fix for now is to force IE7 mode:</p>
<pre><code><meta http-equiv=“X-UA-Compatible” content=“IE=7” />
</code></pre>
<p>More info can be found in <a href="http://blogs.msdn.com/askie/archive/2009/03/23/understanding-compatibility-modes-in-internet-explorer-8.aspx" rel="nofollow">Understanding Compatibility Modes in Internet Explorer 8</a>.</p>
http://stackoverflow.com/questions/1912655/dojo-and-google-closure-compiler/1919615#19196150Answer by Eugene Lazutkin for dojo and google closure compilerEugene Lazutkin2009-12-17T05:17:07Z2009-12-17T05:17:07Z<p>Not planned at the moment. This position can be reversed in Dojo 2.0.</p>
http://stackoverflow.com/questions/1870786/extending-dojo-gfx-group-with-default-instanciated-shapes/1892681#18926810Answer by Eugene Lazutkin for Extending dojo.gfx.Group with default instanciated shapesEugene Lazutkin2009-12-12T07:33:23Z2009-12-12T07:33:23Z<p>I prefer a simple augmentation technique. Below is the content of a script tag:</p>
<pre><code>// let's include gfx (renderer will be selected dynamically)
dojo.require("dojox.gfx");
// useful short names
var d = dojo, g = dojox.gfx;
// our creator function
function createButton(color){
// let's create our main shape: group
var group = this.createGroup();
// add custom properties, if any
group._rect = group.createRect().
setShape({x: 5, y: 5, width: 100, height: 30}).
setStroke("black").
setFill(color);
return group;
}
// we want it to be available on groups and surfaces
d.extend(g.Surface, {createButton: createButton});
d.extend(g.Group, {createButton: createButton});
// let's test the result
dojo.addOnLoad(function(){
var s = g.createSurface(dojo.byId("surface"), 500, 400),
b = s.createButton("red");
});
</code></pre>
<p>The example above assumes that there is a <code><div></code> called "surface".</p>
<p>The augmentation technique works for any renderer regardless its implementation, and uses only published APIs.</p>
http://stackoverflow.com/questions/336859/javascript-var-functionname-function-vs-function-functionname/338053#33805319Answer by Eugene Lazutkin for Javascript: var functionName = function() {} vs function functionName() {}Eugene Lazutkin2008-12-03T17:43:35Z2009-12-03T20:11:13Z<p>First I want to correct RoBorg: <code>function abc(){}</code> is scoped too — the name <code>abc</code> is defined in the scope where this definition is encountered. Example:</p>
<pre><code>function xyz(){
function abc(){};
// abc is defined here...
}
// ...but not here
</code></pre>
<p>Secondly, it is possible to combine both styles:</p>
<pre><code>var xyz = function abc(){};
</code></pre>
<p><code>xyz</code> is going to be defined as usual, <code>abc</code> is undefined in all browsers but IE — do not rely on it being defined. If you want to alias functions on all browsers use this kind of declaration:</p>
<pre><code>function abc(){};
var xyz = abc;
</code></pre>
<p>In this case both <code>xyz</code> and <code>abc</code> are aliases of the same object:</p>
<pre><code>console.log(xyz === abc); // prints "true"
</code></pre>
<p>One compelling reason to use the combined style is the "name" attribute of function objects (<strong>not supported by IE</strong>). Basically when you define a function like this:</p>
<pre><code>function abc(){};
console.log(abc.name); // prints "abc"
</code></pre>
<p>its name is automatically assigned. But when you define it like this:</p>
<pre><code>var abc = function(){};
console.log(abc.name); // prints ""
</code></pre>
<p>its name is empty — we created an anonymous function and assigned it to some variable.</p>
<p>Deep down JavaScript treats both statements differently. This is the function declaration:</p>
<pre><code>function abc(){}
</code></pre>
<p><code>abc</code> here is defined everywhere in the current scope:</p>
<pre><code>// we can call it here
abc(); // works
// yet it is defined down there
function abc(){}
// we can call it again
abc(); // works
</code></pre>
<p>This is the function expression:</p>
<pre><code>var xyz = function(){};
</code></pre>
<p><code>xyz</code> here is defined from the point of assignment:</p>
<pre><code>// we can't call it here
xyz(); // UNDEFINED!!!
// now it is defined
xyz = function(){}
// we can call it here
xyz(); // works
</code></pre>
<p>Function declaration vs. function expression is the real reason why there is a difference demonstrated by RoBorg.</p>
<p>Fun fact:</p>
<pre><code>var xyz = function abc(){};
console.log(xyz.name); // prints "abc"
</code></pre>
<p>Personally I prefer the "function expression" declaration because this way I can control the visibility. When I define the function like that:</p>
<pre><code>var abc = function(){};
</code></pre>
<p>I know that I defined the function locally. When I define the function like that:</p>
<pre><code>abc = function(){};
</code></pre>
<p>I know that I defined it globally providing that I didn't define <code>abc</code> anywhere in the chain of scopes. This style of definition is resilient even when used inside eval(). While this definition:</p>
<pre><code>function abc(){};
</code></pre>
<p>depends on the context and may leave you guessing where it is actually defined, especially in the case of eval() — the answer is: it depends on browser.</p>
http://stackoverflow.com/questions/383201/relation-between-prototype-and-prototype-in-javascript/383478#3834786Answer by Eugene Lazutkin for Relation between [[Prototype]] and prototype in JavaScriptEugene Lazutkin2008-12-20T17:00:57Z2009-12-01T19:03:40Z<p>To answer your question directly: logically it is an object's private copy of the <code>prototype</code> property of its constructor. Using metalanguage this is how objects are created:</p>
<pre><code>// not real JS
var Ctr = function(...){...};
Ctr.prototype = {...}; // some object with methods and properties
// the object creation sequence: var x = new Ctr(a, b, c);
var x = {};
x["[[prototype]]"] = Ctr.prototype;
var result = Ctr.call(x, a, b, c);
if(typeof result == "object"){ x = result; }
// our x is fully constructed and initialized at this point
</code></pre>
<p>At this point we can modify the prototype, and the change will be reflected by all objects of the class, because they refer to the prototype by reference:</p>
<pre><code>Ctr.prototype.log = function(){ console.log("...logging..."); };
x.log(); // ...logging..
</code></pre>
<p>But if we change the prototype on the constructor, already created objects will continue referring to the old object:</p>
<pre><code>Ctr.prototype = {life: 42};
// let's assume that the old prototype didn't define "life"
console.log(x.life); // undefined
x.log(); // ...logging...
</code></pre>
<p>In the full accordance with the standard <code>[[prototype]]</code> is not available, but Mozilla extends the standard with <code>__proto__</code> property (read-only), which is exposing the normally hidden <code>[[prototype]]</code>:</p>
<ul>
<li><a href="https://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Property_Inheritance_Revisited/Determining_Instance_Relationships" rel="nofollow">the Mozilla's documentation</a></li>
<li><a href="http://weblogs.asp.net/stephenwalther/archive/2008/02/26/javascript-magic-properties-using-count-proto-and-parent.aspx" rel="nofollow">overview of Mozilla's extensions: __count__, __proto__, __parent__</a></li>
</ul>
<p>Again, <code>__proto__</code> can be legalized in <a href="http://wiki.ecmascript.org/doku.php?id=es3.1:es3.1_proposal_working_draft" rel="nofollow">the next ES3.1 standard</a>.</p>
http://stackoverflow.com/questions/1812148/dojo-dnd-move-node-programmatically/1814979#18149791Answer by Eugene Lazutkin for Dojo DnD Move Node ProgrammaticallyEugene Lazutkin2009-11-29T08:14:15Z2009-11-30T01:55:14Z<p>It looks like you assume that <code>delItem</code> removes physical nodes. Take a look at the <a href="http://docs.dojocampus.org/dojo/dnd#public-methods-and-attributes" rel="nofollow">documentation</a> — probably you want to move nodes between containers instead of deleting them from the map. One simple way to do that just to move DOM nodes between containers, and call <code>sync()</code> on both containers.</p>
<p><strong>Addition</strong>: Here is a super-simple pseudocode-like example:</p>
<pre><code>function move(node, source, target){
// normalize node and/or node id
node = dojo.byId(node);
// move it physically from one parent to another
// (from target to source) adding to the end
target.parent.appenChild(node);
// now it is moved from source to target
// let's synchronize both dojo.dnd.Source's
source.sync();
target.sync();
}
</code></pre>
<p>Or something along these lines should work. The important pieces:</p>
<ul>
<li>Move node from one parent to another using any DOM operations you deem appropriate. I used <code>appendChild()</code>, but you can use <code>insertBefore()</code>, or anything else.</li>
<li>Synchronize both sources involved after the move.</li>
</ul>
<p>Obviously it works if both sources use nodes of the same type and structure. If not, you should do something more complex, e.g., move everything you need emulating a real DnD move by publishing topics described in the documentation.</p>
http://stackoverflow.com/questions/1795089/need-help-with-jquery-to-javascript/1795145#17951450Answer by Eugene Lazutkin for Need help with jQuery to JavaScriptEugene Lazutkin2009-11-25T07:05:52Z2009-11-25T07:05:52Z<p>Simple:</p>
<pre><code>window.onload = function() {
document.body.className = "javascript";
}
</code></pre>
<p>Or in HTML:</p>
<pre><code><body onload="document.body.className = 'javascript'">...</body>
</code></pre>
<p>Unless you want to differentiate between "before onload" and "after onload", you can do it statically:</p>
<pre><code><body class="javascript">...</body>
</code></pre>
http://stackoverflow.com/questions/1773040/dojo-dojox-form-manager-not-firing-observers/1773418#17734180Answer by Eugene Lazutkin for (dojo) dojox.form.Manager not firing observersEugene Lazutkin2009-11-20T21:42:31Z2009-11-20T21:42:31Z<p>IIRC an observer is a method name on a form manager, not a standalone function. While you didn't give the complete example to test, your naming suggest that you use a standalone function.</p>
<p>You can define a method on the form manager either inline (see an example in its "tests" subdirectory), or in the code by subclassing a manager.</p>
http://stackoverflow.com/questions/1743797/is-there-anything-inherently-dangerous-about-instantiating-a-dojo-class-like-this/1747089#17470891Answer by Eugene Lazutkin for Is there anything inherently dangerous about instantiating a dojo class like this?Eugene Lazutkin2009-11-17T07:03:30Z2009-11-17T07:03:30Z<p>At least two things can go wrong:</p>
<ul>
<li>Your code assumes that a dynamically loaded module is loaded synchronously with <code>dojo.require()</code>. It is true only for the default loader. The XD loader will load things asynchronously breaking your logic.</li>
<li>An object is instantiated and its properties copied using <code>dojo.mixin()</code>, which by necessity will flatten it. It means:
<ul>
<li>It may override some internals (you preserve <code>declaredClass</code>, but there may be others).</li>
<li>OOP helpers (like <code>this.inherited()</code>) will be broken for copied methods.</li>
</ul></li>
</ul>
<p>But if these restrictions fit your use case, you should be fine.</p>
<p>It is hard to suggest improvements because it is not clear what you are trying to achieve. If you want to add flat mixins to an object, the only thing you need to make sure that the objects are truly flat.</p>
<p>Minor improvements to your code:</p>
<ul>
<li><p><code>declaredClass</code> is defined on object's prototype, not on object itself ⇒ you don't need to preserve it. Just delete it from the object itself:</p>
<pre><code>//var declaredClassBackup = this.declaredClass; // backup the "declaredClass"
// no need
// the rest of your code
...
/*
* Re-set the declaredClass name back to that of this class.
*/
//this.declaredClass = declaredClassBackup;
// no need
delete this.declaredClass;
</code></pre></li>
<li><p>Instead of <code>dojo.mixin()</code> you can use <code>dojo.safeMixin()</code>, which skips <code>constructor</code> and decorate methods. This method is available since Dojo 1.4 (including the current trunk).</p></li>
</ul>
http://stackoverflow.com/questions/1713241/dojo-drag-and-drop-and-key-handlers/1727686#17276860Answer by Eugene Lazutkin for dojo drag and drop and key handlersEugene Lazutkin2009-11-13T07:25:33Z2009-11-13T07:25:33Z<p>In general key events are not position-specific like mouse events, and they target a focused node, like a radio button, or a text box. I suspect you don't have form nodes there. You can always try to emulate it yourself, but Dojo DnD doesn't support it out of the box.</p>
http://stackoverflow.com/questions/1686503/dojo-will-shrinksafe-work-together-with-the-google-closure-compiler/1689471#16894712Answer by Eugene Lazutkin for Dojo: Will Shrinksafe work together with the Google Closure Compiler?Eugene Lazutkin2009-11-06T18:39:00Z2009-11-06T18:39:00Z<p>Yes, Google Closure Compiler works fine with Dojo projects. Because Closure is derived from Dojo, it has similar concepts (modules, loaders, the build, and so on) so it is potentially possible to use some advanced features of Closure Compiler with Dojo, which go beyond simple minification.</p>
<p>We (Dojo) will evaluate what we can reuse and leverage from Closure and how we can improve interoperability. Obviously it will include all tooling too.</p>
http://stackoverflow.com/questions/1578003/capturing-keyboard-events-in-dojox-gfx/1675741#16757410Answer by Eugene Lazutkin for Capturing Keyboard Events in Dojox GFXEugene Lazutkin2009-11-04T18:28:47Z2009-11-04T18:28:47Z<p>Keyboard events are not pointed, they are essentially global. You should catch them globally attaching a handler to <code>document</code> or <code>body</code>.</p>
http://stackoverflow.com/questions/1632689/dojo-dnd-how-to-access-newly-copied-node-on-ondnddrop-event/1635554#16355540Answer by Eugene Lazutkin for Dojo DnD: how to access newly copied node on onDndDrop event?Eugene Lazutkin2009-10-28T06:55:19Z2009-10-28T06:55:19Z<p>First, as a rule of thumb try to avoid using DnD topics especially for local things — they are cumbersome to use because by the time your function is called parameters can be modified or even destroyed by other processors (as you already discovered). Use local events and/or override methods. If you want to do something to newly inserted nodes just override <code>onDrop</code> (or <code>onDropExternal</code>, or <code>onDropInternal</code>, if you want to handle only specific drops).</p>
<p>Another useful hint: newly inserted nodes are selected.</p>
<p>Let's code it up:</p>
<pre><code>var c1 = new dojo.dnd.Source('container1', {copyOnly:true});
var c2 = new dojo.dnd.Source('container2');
// ...
// the decorator technique
function paintRed(source){
var old_onDrop = source.onDrop;
source.onDrop = function(){
// we don't care about actual parameters
// (we will pass them in bulk)
// let's do a drop:
old_onDrop.apply(this, arguments);
// now all dropped items are inserted and selected in c2
// let's iterated over all selected items:
this.forInSelectedItems(function(item, id){
// print the id
console.log(id);
// paint it red
dojo.style(id, "color", "red");
});
};
}
// now let's decorate c2
paintRed(c2);
// now c2 paints all dropped nodes red
</code></pre>
<p>If you allow to rearrange lists and want to do the modifications only for external drops (e.g., from c1 to c2), you should override <code>onDropExternal</code>. The code will be the same.</p>
<p>Because this example doesn't rely on original items, you can do it with topics but you may need some extra code if you want to do it conditionally (e.g., for c2, but not c1). If you don't care about any other things, it is actually pretty easy too:</p>
<pre><code>dojo.subscribe("/dnd/drop", function(source, nodes, copy, target){
// warning: by the time this function is called nodes
// can be copied/modified/destroyed --- do not rely on them!
// but we don't need them here
target.forInSelectedItems(function(item, id){
// print the id
console.log(id);
// paint it red
dojo.style(id, "color", "red");
});
});
</code></pre>
http://stackoverflow.com/questions/1191925/which-javascript-framework-is-generally-used-for-high-performance-websites/1192686#11926867Answer by Eugene Lazutkin for Which JavaScript framework is generally used for high performance websites?Eugene Lazutkin2009-07-28T08:32:20Z2009-09-17T22:59:47Z<p><em>(Full disclaimer: I am a Dojo developer and this is my unofficial perspective).</em></p>
<p>All major libraries can be used in high load scenarios. There are several things to consider:</p>
<p><strong>Initial load</strong></p>
<p>The initial load affects your response time: from requesting a web page to being responsive and in working mode. Trivial things to do are:</p>
<ul>
<li>concatenate several JavaScript files together (works for CSS files too)</li>
<li>minimize and/or compress your JavaScript</li>
</ul>
<p>The idea is to send less — good for the server, and good for the client.</p>
<p>The less trivial thing to do:</p>
<ul>
<li>structure your program in such a way so it is operational without all modules loaded</li>
</ul>
<p>Example of the latter: divide your modules into essential (e.g., the core logic), and non-essential (e.g., helpers: tooltips, hints, verifiers, help facilities, various "gradual enhancers", and so on). The idea is that frequently there are things which are not important for frequent users, but nice for casual users ⇒ they can be delayed.</p>
<p>We can load essential modules first and load the rest asynchronously. Example: if user wants to edit an object we need to show it first, after that we have several hundred milliseconds to load the rest: lookup tables, hints, and so on.</p>
<p>Obviously it helps when asynchronous loading of modules is supported by the framework you use. Dojo has this facility built-in.</p>
<p><strong>Distribute files</strong></p>
<p>Everybody knows that due to browser restrictions on number of parallel downloads from the same site it is beneficial to load resources (images, CSS, JavaScript) from different domains:</p>
<ul>
<li>we can download more in parallel, if user's line has enough bandwidth — these days it is almost always true</li>
<li>we can set up web servers optimized for serving static files: huge disk cache, small workers, keep-alive, async serving, and so on</li>
<li>we can remove all unnecessary features we don't need when serving static files: sessions, cookies, and so on</li>
</ul>
<p>One frequently overlooked optimization in JavaScript applications is to use <a href="http://en.wikipedia.org/wiki/Content_delivery_network" rel="nofollow">CDN</a>:</p>
<ul>
<li>your web site can benefit from the geographical distribution of CDN (files can be served from the closest/fastest server)</li>
<li>user may have required files in her cache, if they were used by other application</li>
<li>intermediate/corporate caches increase the probability that required files are already cached</li>
<li>the last but not least: these are files that you don't serve — think about it</li>
</ul>
<p>Again, Dojo supports CDNs for a long time and distributed publicly by <a href="http://dev.aol.com/dojo" rel="nofollow">AOL CDN</a> and <a href="http://code.google.com/apis/ajaxlibs/documentation/" rel="nofollow">Google CDN</a>. The latter carries practically all popular JavaScript toolkits too. Obviously you can create your own CDN and your very own CDN- and app- specific Dojo build, if you feel you need it — it is trivial and well documented.</p>
<p><strong>Communication bandwidth</strong></p>
<p>How that can be different for different toolkits? XHR is XHR.</p>
<p>You need to reduce the load on your servers as much as possible. Analyze <strong>all</strong> traffic and consider how much static/immutable stuff is sent over the pipe. For example, typically a lot of HTML is redundant across several pages: a header, a footer, a menu, and so on. Do you really need all of these to be sent over every time?</p>
<p>One obvious solution is to move from static HTML + "gradual enhancements" with JavaScript to real "one page" JavaScript applications. Again, this is a frequently overlooked, but the most rewarding optimization.</p>
<p>While the idea sounds easy, in reality it is not as simple as it seems. As soon as we go from one-liners to apps we have a plethora of questions, and the biggest of them is the packaging: what your components are, what components are provided by the toolkit, and how to package and deliver them.</p>
<p>Dojo provides modules, good OOP for general classes, widgets (a combination of an optional HTML and related behaviors), and a lot of facilities to work with them. You can:</p>
<ul>
<li>load modules on demand rather than in the head</li>
<li>load modules asynchronously</li>
<li>find all dependencies between modules automatically and create a "build" — one file in simple cases, or more, if your app is big and requires several layers</li>
<li>while doing the "build" it can inline all HTML snippets for your widgets, optimize CSS, and minify/compress JavaScript</li>
<li>Dojo can automatically find and instantiate widgets in HTML saving a lot of boilerplate code</li>
<li>and much much more</li>
</ul>
<p>All these features help greatly when building applications on the client side. <a href="http://stackoverflow.com/questions/394601/which-javascript-framework-jquery-vs-dojo-vs/394668#394668">That's why I like Dojo</a>.</p>
<p>Obviously there are more ways to optimize high load web sites but according to my practice these are the most specific for JavaScript frameworks.</p>
http://stackoverflow.com/questions/1372013/dojo-disable-all-input-fields-in-div-container/1376547#13765470Answer by Eugene Lazutkin for Dojo disable all input fields in div containerEugene Lazutkin2009-09-03T23:46:49Z2009-09-03T23:46:49Z<p>That's how I do it:</p>
<pre><code>dojo.query("input, button, textarea, select", container).attr("disabled", true);
</code></pre>
<p>This one-liner disables all form elements in the given container.</p>
http://stackoverflow.com/questions/1349459/dojo-include-script-from-cdn/1353190#13531901Answer by Eugene Lazutkin for DOJO include script from CDNEugene Lazutkin2009-08-30T06:00:00Z2009-08-30T17:54:24Z<p>Sounds like timing issues. Are you sure you do CDN right? The trick is you cannot use what's defined in files you <code>dojo.require()</code>d right away — they are going to be loaded asynchronously.</p>
<p>The basic structure of the CDN-based application is like this:</p>
<pre><code><script src="to/dojo/cdn"></script>
<script>
dojo.require("dojo.this");
dojo.require("dojo.that");
// more dojo.require()
// you cannot use dojo.this and dojo.that here
dojo.addOnLoad(function(){
// this is crucial: do everything in dojo.addOnLoad();
// now use dojo.this and dojo.that
dojo.this(dojo.that);
});
</script>
</code></pre>
<p>In order to troubleshoot you can do one thing: write a minimal web page, which loads Dojo using your favorite CDN and does nothing. Open it up in Firefox, open Firebug and enter some simple Dojo calls manually to see if it works for you. If it doesn't, switch to the Net tab and see what calls were made, when, and how they ended.</p>
http://stackoverflow.com/questions/1343422/dojo-vs-dijit-files-to-include-or-reference/1344791#13447911Answer by Eugene Lazutkin for Dojo vs Dijit - files to include or reference?Eugene Lazutkin2009-08-28T02:50:45Z2009-08-28T02:50:45Z<p>I just want to clarify that when using CDN all you need to include is the main Dojo script. The rest will be pulled in automatically when you <code>dojo.require()</code> them.</p>
<p>If for some (technical) reasons you don't want to use the X-Domain loader (CDNs use this type of loader), you can do a custom build (well-described in many places). After the build you copy <strong>only relevant files</strong> to your server. No need to copy all 2000+ tests, demos, unused DojoX projects, Dijits and so on.</p>
<p>During the build you will create a single minified file (or a few layers), which will include all Dojo JavaScript code you use. If you use Dojo widgets, their templates will be already inlined, so you do not incur hits for them. As part of the build CSS files are combined together and minified too. So literally in most cases you will have just two files: a Dojo layer, which includes everything + your custom code, and a CSS file. In more complex cases you may have more files, but usually we are talking about handful.</p>
<p>How to make sure that everything is in the build? Fire up your favorite network analyzer (Live HTTP Headers, Firebug, Fiddler2, or Charles Proxy would do fine) and see if you hit any files outside of your build. If you do — include them in the build, or try to figure out why they are requested, and eliminate these requests (some localization-related calls are fine).</p>
<p>Personally I would start with the CDN option — works well, no hassle, hosted by somebody else with fat pipes.</p>
http://stackoverflow.com/questions/1336181/dojox-charting-legend-image-rotation/1339269#13392690Answer by Eugene Lazutkin for Dojox charting legend image rotationEugene Lazutkin2009-08-27T06:50:08Z2009-08-27T06:50:08Z<p>Currently it is not supported.</p>
http://stackoverflow.com/questions/321113/how-can-i-pre-set-arguments-in-javascript-function-call-partial-function-applic/321291#3212911Answer by Eugene Lazutkin for How can I pre-set arguments in JavaScript function call? (Partial Function Application)Eugene Lazutkin2008-11-26T16:21:02Z2009-08-25T03:49:19Z<p>If you use Dojo you just call dojo.hitch() that does almost exactly what you want. Almost — because it can be used to pack the context as well. But your example is first:</p>
<pre><code>dojo.hitch(out, "hello")("world");
dojo.hitch(out, "hello", "world")();
</code></pre>
<p>As well as:</p>
<pre><code>var A = {
sep: ", ",
out: function(a, b){ console.log(a + this.sep + b); }
};
// using functions in context
dojo.hitch(A, A.out, "hello")("world");
dojo.hitch(A, A.out, "hello", "world")();
// using names in context
dojo.hitch(A, "out", "hello")("world");
dojo.hitch(A, "out", "hello", "world")();
</code></pre>
<p>dojo.hitch() is the part of the Dojo Base, so as soon as you included dojo.js it is there for you.</p>
<p>Another general facility is available in dojox.lang.functional.curry module (documented in <a href="http://lazutkin.com/blog/2008/jan/12/functional-fun-javascript-dojo/" rel="nofollow">Functional fun in JavaScript with Dojo</a> — just look on this page for "curry"). Specifically you may want to look at curry(), and partial().</p>
<p>curry() accumulates arguments (like in your example) but with one difference: as soon as the arity is satisfied it calls the function returning the value. Implementing your example:</p>
<pre><code>df.curry(out)("hello")("world");
df.curry(out)("hello", "world");
</code></pre>
<p>Notice that the last line doesn't have "()" at the end — it is called automatically.</p>
<p>partial() allows to replace arguments at random:</p>
<pre><code>df.partial(out, df.arg, "world")("hello");
</code></pre>
http://stackoverflow.com/questions/1307873/dojox-legend-color-for-markers-incorrect/1325932#13259320Answer by Eugene Lazutkin for Dojox legend color for markers incorrectEugene Lazutkin2009-08-25T03:35:38Z2009-08-25T03:35:38Z<p>Are you by any chance creating the legend before populating a chart? Or do you make other changes to the chart? If you want to reflect any changes in the legend widget, you should call <code>refresh()</code> method on it.</p>
<p>In order to eliminate the guess work it would be better to post a minimal example, or point to an existing test/demo.</p>
http://stackoverflow.com/questions/1324558/can-the-name-of-a-input-tag-be-changed-with-javascript/1324579#13245790Answer by Eugene Lazutkin for can the name of a input tag be changed with javascript ?Eugene Lazutkin2009-08-24T20:32:20Z2009-08-24T20:32:20Z<p>Sure. If jQuery is your poison, this should do the trick:</p>
<pre><code>$("input[name=some_name]").attr("name", "other_name");
</code></pre>
http://stackoverflow.com/questions/1283636/what-is-this-before-an-object-is-instantiated-in-js/1283861#12838614Answer by Eugene Lazutkin for What is 'this' before an object is instantiated in js?Eugene Lazutkin2009-08-16T09:16:55Z2009-08-18T08:02:29Z<p>First let's go over some fine points of JavaScript, then we can deal with your example.</p>
<h3>Function's context</h3>
<p>One point of misunderstanding is a context. Every function is called in a context, which is available using a keyword <code>this</code>. Let's write a function we can use to inspect contexts:</p>
<pre><code>var probe = function(){
// if the context doesn't have a name, let's name it
if(!this.name){
this.name = "lumberjack";
}
// print the name of my context
console.log(this.name);
};
</code></pre>
<p>Here we go:</p>
<pre><code>name = "global!";
// when we call a function normally it still have a context:
// the global context
probe(); // prints: global!
var ctx = {name: "ctx"};
// we can set a context explicitly using call()
probe.call(ctx); // prints: ctx
// we can set a context explicitly using apply()
probe.apply(ctx); // prints: ctx
// it is set implicitly, if we call a function as a member
ctx.fun = probe;
ctx.fun(); // prints: ctx
// or we can create a brand new object and set it as a context:
// that's what "new" does
var t = new probe(); // prints: lumberjack
// let's sum it up:
console.log(name); // prints: global!
console.log(ctx.name); // prints: ctx
console.log(t.name); // prints: lumberjack
</code></pre>
<p>That's why it is so easy to mess up and fall down inadvertently to the global context.</p>
<h3>Returning value in constructor</h3>
<p>Many people are confused when they see a constructor returning a value. It is legal. Constructor can return an object, a function, or an array. This value is going to be used as an instance. The old instance is going to be discarded.</p>
<pre><code>var myClass = function(){
// if it is called as a constructor, "this" will be a new instance
// let's fill it up:
this.a = 42;
this.b = "Ford";
this.c = function(){ return "Perfect"; };
// done? let's discard it completely!
// and now for something completely different...
return {
owner: "Monty Python",
establishment: "Flying Circus"
};
};
var t = new myClass();
alert(t.owner + "'s " + t.establishment);
</code></pre>
<p>As expected it shows "Monty Python's Flying Circus".</p>
<p>If a constructor returns something else (e.g., a number, a string, the null, the undefined) the returned result is going to be discarded and the old instance will be used.</p>
<h3>The example</h3>
<p>Your example is hard to understand mostly because of the way it was written. Let's simplify it by rewriting.</p>
<p>First let's deal with the <code>x</code>:</p>
<pre><code>var x = function() {
this.foo = "foo";
return function() {
this.bar = "bar";
return foo + bar;
};
}(); // returns inner
</code></pre>
<p>As we can see the anonymous function (the 1<sup>st</sup> <code>function</code>) is executed immediately, so we can inline it:</p>
<pre><code>// next assignment can be simplified because
// top "this" is window or the global scope
//this.foo = "foo"; =>
foo = "foo";
x = function() {
this.bar = "bar"; // this line depends on its context, or "this"
return foo + bar; // this line uses global "foo" and "bar"
};
</code></pre>
<p>So at the end we have two global variables: <code>foo</code> (a string) and <code>x</code> (a function).</p>
<p>Now let's go over the 1<sup>st</sup> alert:</p>
<pre><code>alert(x()); // 'foobar', so both 'this' variables are set
</code></pre>
<p>Again, let's inline <code>x()</code>:</p>
<pre><code>// next assignment can be simplified because
// top "this" is window or the global scope
//this.bar = "bar"; =>
bar = "bar";
// at this moment both global "foo" and "bar" are set
alert(foo + bar); // => "foo" + "bar" => "foobar"
</code></pre>
<p>The 2<sup>nd</sup> alert is equally simple:</p>
<pre><code>alert(x.bar); // undefined - but wasn't it used correctly?
</code></pre>
<p>It doesn't need much rewriting. <code>x</code> is a function, we didn't add any properties to it, so <code>x.bar</code> is undefined. If you add it, you can see results:</p>
<pre><code>x.bar = "bar2";
alert(x.bar); // bar2
</code></pre>
<p>The 3<sup>rd</sup> alert demonstrates JavaScript's OOP in action:</p>
<pre><code>alert(new x().bar); // ok, works
</code></pre>
<p>(A side note: it works only because you ran <code>x()</code> first, otherwise it blows up because <code>bar</code> is undefined).</p>
<p>Let's rewrite it like that:</p>
<pre><code>var t = new x();
alert(t.bar); // bar
</code></pre>
<p>Now let's analyze the constructor. It has two statements: an assignment, and a return. The latter is ignored because it returns a string. So we can rewrite it like that:</p>
<pre><code>x = function(){
this.bar = "bar";
};
var t = new x();
alert(t.bar); // bar
</code></pre>
<p>I hope it all looks easy now.</p>
http://stackoverflow.com/questions/1282322/what-are-good-practices-for-url-design-in-one-page-web-apps-i-use-dojo/1282752#12827520Answer by Eugene Lazutkin for What are good practices for URL design in one page web apps (I use Dojo)?Eugene Lazutkin2009-08-15T20:21:53Z2009-08-18T04:01:48Z<p>It looks like you are talking about two different things:</p>
<ol>
<li>URLs exposed by your web server framework.</li>
<li>URLs used by JavaScript to re-create a state inside so-called "one page application".</li>
</ol>
<p>The former is relatively trivial and is outside of the client-side scope. The latter is a subject of the article you linked.</p>
<p>The idea is to use a hash mark in the URL to convey the internal state of this web page.</p>
<p>What is considered to be a part of state? Literally anything, but usually it has to have some tangible meaning. For example, if your web page presents different "pages" or sections to end users, the current section can be a part of state.</p>
<p>Let me give you a concrete example. Links below point to the same web site and the same web page (<code>search.html</code>), yet they present different information encoded in the hash mark:</p>
<ul>
<li><a href="http://www.nexplore.com/search.html#category=web&query=dojo%20toolkit" rel="nofollow">http://www.nexplore.com/search.html#category=web&query=dojo%20toolkit</a></li>
<li><a href="http://www.nexplore.com/search.html#category=image&query=cat" rel="nofollow">http://www.nexplore.com/search.html#category=image&query=cat</a></li>
<li><a href="http://www.nexplore.com/search.html#category=video&query=stupid%20tricks" rel="nofollow">http://www.nexplore.com/search.html#category=video&query=stupid%20tricks</a></li>
</ul>
<p>You can see that the state is trivially encoded in a human-friendly way. Every time you search for something new, or switch categories the hash is updated and you can save it, send it to your friend, or put it in an article like I just did.</p>
<p>A JavaScript application that employs this technique works like that:</p>
<ul>
<li>When the application initializes, e.g., using <code>dojo.addOnLoad()</code>, it checks the hash mark.
<ul>
<li>If the hash mark is present, it is decoded as a state, and proper manipulations are made.</li>
</ul></li>
<li>During the normal course of actions, the application updates the hash mark to reflect its current state. This state can be persisted by end users.</li>
</ul>
<p>As soon as you start to use "one page web apps" the current state becomes essential to support. It gives users a stop point, so they can save and return to work later, rather than starting from the very beginning — just imagine that you have 15 screens encoded in one web page, and you have to enter information in all of them.</p>
<p>Another thing which plagues "one page web apps" is the broken back button. Users may try to navigate your application using the familiar back and forward buttons supported by every browser. It would be most unfortunate to betray their expectations — imagine that user was on 7<sup>th</sup> screen and clicked the back button. Whose fault is it? It is the web designer's failure.</p>
<p>Both these problems are essentially the same thing, and can be solved simultaneously.</p>
<p>Dojo provides a simple facility to do "all of the above" using <code>dojo.back()</code>. You can:</p>
<ul>
<li>Set custom state with one call whenever you need to do so.</li>
<li>Associate "back" and "forward" actions with a particular state.</li>
<li>Automate state transitions, when user uses back/forward buttons.</li>
</ul>
<p>And of course it attempts to hide browser differences in respect of handling all these things.</p>
<p>PS: Why is a hash mark used for this? Because it can be changed from JavaScript without re-requesting a page from web server. Another popular option to convey state is a search part of URL (e.g., <code>?state=5</code>), but it cannot be used if it is supposed to be changed dynamically because it will request the same page again.</p>
<p><strong>UPDATE:</strong> Now addressing the design of URIs. Over the time a lot was written and said about this topic. Probably the most influential authors in the field are:</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Tim_Berners-Lee" rel="nofollow">Tim Berners-Lee</a> (the guy who invented the World Wide Web):
<ul>
<li><a href="http://www.w3.org/DesignIssues/Axioms.html" rel="nofollow">Universal Resource Identifiers — Axioms of Web Architecture</a> — DOs and DONTs of URIs.</li>
<li><a href="http://www.w3.org/Provider/Style/URI" rel="nofollow">Cool URIs don't change</a> — selecting the right URIs.</li>
</ul></li>
<li><a href="http://en.wikipedia.org/wiki/Roy_Fielding" rel="nofollow">Roy Fielding</a> (the guy who developed HTTP and invented REST):
<ul>
<li><a href="http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm" rel="nofollow">Architectural Styles and the Design of Network-based Software Architectures</a> — his dissertation, which explains REST.</li>
<li><a href="http://roy.gbiv.com/untangled/2008/rest-apis-must-be-hypertext-driven" rel="nofollow">REST APIs must be hypertext-driven</a> — the relationship between REST, hypertext, and URIs.</li>
</ul></li>
</ul>
<p>Most modern applications nowadays are organized around <a href="http://en.wikipedia.org/wiki/Representational_State_Transfer" rel="nofollow">REST</a> ideas. Their typical implementation as far as URIs are concerned is to provide URIs as nouns, using HTTP verbs as, well, verbs. Examples:</p>
<ul>
<li><code>/articles</code> — all articles.</li>
<li><code>/articles/2005</code> — all articles for 2005.</li>
<li><code>/articles/2005/12</code> — all articles for December of 2005.</li>
<li><code>/articles/2005/12/about-rest</code> — "About REST" article written in December of 2005.</li>
</ul>
<p>The verbs would be (with possible meaning):</p>
<ul>
<li><code>GET</code> — get a resource (no side-effects!).</li>
<li><code>PUT</code> — create or replace a resource at given URI.</li>
<li><code>POST</code> — submit a resource for processing, or add a resource to a list, or create a sub-resource.</li>
<li><code>DELETE</code> — delete a resource.</li>
</ul>
<p>REST assumes that if a resource has links to other resources, URIs are used in the hypertext fashion. Common example would be a list of other resources.</p>
<p>In URIs examples above I intentionally used human-readable URIs that can be used to present resources to end users. Typically modern web applications use two-tier URI schema:</p>
<ol>
<li>REST for the underlying resources used by programs.</li>
<li>REST-like URIs of web pages for end users.</li>
</ol>
<p>The latter can be organized around the former, or around some user-centric concepts, like activity areas. I prefer to use simple and understandable URIs to present to my users, no <code>/&p=29463&q=RcLGTt</code> gobbledygook.</p>
<p>Don't forget that web page URIs are organized around <code>GET</code>. Web pages with forms can produce <code>POST</code> yet it is a bad form to expose such URIs because they cannot be bookmarked and shared. The common technique is to redirect (using <code>HTTP 302</code>) in response to <code>POST</code> to a regular web page (e.g., "Thanks!" web page) — it provides for a seamless user experience, yet hides non-bookmarkable URIs.</p>
<p>The hash is already a part of URL, and it denotes a state of a web page (a location inside it). Reusing it to mean a programmatic state is completely in line with its original purpose. While verbs have no meaning for hash marks, the rest is completely applicable (universality, global uniqueness, sameness, identity). It should be a "noun", not a "verb" (action). In simple cases a properly-escaped bag of key-value pairs can be used (like in the examples at the beginning of this post). In more complex cases it may be a composite name, like discussed above.</p>
<p>Obviously the design of URIs for a web application is a part of architecture and should take into account the specifics. It is more art than science — that's why we pay software architect big bucks. ;-) But I hope that the above information will get you started on the right path.</p>
http://stackoverflow.com/questions/1283701/how-to-get-javascript-in-an-iframe-to-modify-the-parent-document/1283912#12839121Answer by Eugene Lazutkin for How to get javascript in an iframe to modify the parent document?Eugene Lazutkin2009-08-16T09:48:55Z2009-08-16T09:48:55Z<p>Other people explained security implications. But the question is legitimate, there are use cases for that, and it is possible in some scenarios to do what you want.</p>
<p>W3C defines a property on <code>document</code> called <code>domain</code>, which is used to check security permissions. This property can be manipulated cooperatively by both documents, so they can access each other in some cases.</p>
<p>The governing document is <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/" rel="nofollow">DOM Level 1 Spec</a>. Look at <a href="http://www.w3.org/TR/2000/WD-DOM-Level-1-20000929/level-one-html.html#ID-26809268" rel="nofollow">the description of <code>document</code></a>. As you can see this property is defined there and … it is read-only. In reality all browsers allow to modify it:</p>
<ul>
<li>Mozilla's <a href="https://developer.mozilla.org/en/DOM/document.domain" rel="nofollow">document.domain description</a>.</li>
<li>Microsoft's <a href="http://msdn.microsoft.com/en-us/library/cc196989%28VS.85%29.aspx" rel="nofollow">domain property description</a>.</li>
</ul>
<p>Modifications cannot be arbitrary. Usually only super-domains are allowed. It means that you can make two documents served by different server to access each other, as long as they have a common super-domain.</p>
<p>So if you want two pages to communicate, you need to add a small one-liner, which should be run on page load. Something like that should do the trick:</p>
<pre><code>document.domain = "yourdomain.com";
</code></pre>
<p>Now you can serve them from different subdomains without losing their accessibility.</p>
<p>Obviously you should watch for timing issues. They can be avoided if you establish a notification protocol of some sort. For example, one page (the master) sets its domain, and loads another page (the server). When the server is operational, it changes its domain and accesses the master triggering some function.</p>
http://stackoverflow.com/questions/1257846/prototype-dojo-or-jquery/1283417#12834173Answer by Eugene Lazutkin for Prototype, dojo or jQuery?Eugene Lazutkin2009-08-16T04:06:58Z2009-08-16T04:06:58Z<p>This question was asked multiple times, and the answer depends on many factors.</p>
<p>If all you want is to provide simple gradual enhancements to existing web applications, any major JavaScript framework will do just fine.</p>
<p>I saw so many badly made web sites with "custom" JavaScript code that nowadays I always recommend to pick <strong>a</strong> framework and use it without going guerrilla. At least it will be a tested code, which works on most browsers. Unless of course you are a guru and the web site in question is a part of <a href="http://www.thefreedictionary.com/power+trip" rel="nofollow">power trip</a>.</p>
<p>Only if you want more than simple crutches, or you have some special requirements, you will see the difference. But you have to ask right questions for that.</p>
<p>These are questions I would ask:</p>
<ul>
<li>Do I want to use "one page web applications" A.K.A. "thick client" to reduce server load and/or improve user's experience?
<ul>
<li>What units (building blocks) are supported by the framework? What level?
<ul>
<li>I may want: <em>classes, widgets (JavaScript + HTML + CSS), modules, packages</em>.</li>
<li>What units are provided out of box and supported as a part of toolkit?</li>
<li>How simple it is to write my own units?</li>
<li>How to do unit testing for my own units?</li>
<li>What does it take to make portable and reusable units?</li>
</ul></li>
<li>Is there any provisions to track dependencies between units, or is it manual?</li>
<li>What code managing tools are supported?
<ul>
<li>How to do unit testing for my own units?</li>
<li>How to create a release version of my code?</li>
<li>I may want:
<ul>
<li>Merging relevant files into one file in correct order (defined by dependencies).</li>
<li>For big web size I may want 3-4 such files.</li>
<li>I want it to be done for JS and CSS files.</li>
</ul></li>
<li>Is the minification of JS/CSS supported automatically or should I do it myself?</li>
<li>Any other optimizations or helpers? Examples:
<ul>
<li>Producing optimized results according to a supplied browser profile.</li>
<li>Inlining HTML.</li>
<li>Simple integration with a server framework I use.</li>
</ul></li>
</ul></li>
</ul></li>
<li>What provisions are provided to maintain the expected browser-based UI? Examples:
<ul>
<li>If user is in the middle of my "one page application", can she bookmark it and return back later without starting the whole process anew?
<ul>
<li>Can she send such bookmark to anybody else?</li>
</ul></li>
<li>Are back/forward buttons supported within a single page?</li>
</ul></li>
<li>Do I target an international audience?
<ul>
<li>Is it simple to provide the same level of service to users from different countries?</li>
<li>Does the framework have a translation mechanism I can reuse?</li>
<li>Does it support the internationalization I need?
<ul>
<li>Example: <em>left-to-right vs. right-to-left languages</em>.</li>
</ul></li>
</ul></li>
<li>Does it support the localization I need?
<ul>
<li>Example: <em>European dates vs. Japanese dates vs. American dates</em>.</li>
</ul></li>
<li>What are technical provisions to support my core functionality?
<ul>
<li>Example: <em>many web sites use forms</em>.
<ul>
<li>How easy to do <a href="http://en.wikipedia.org/wiki/Create,_read,_update_and_delete" rel="nofollow">CRUD</a>?</li>
<li>What are validation mechanisms?</li>
<li>How flexible they are?</li>
<li>Does the validation work well with the internationalization/localization I need?</li>
</ul></li>
</ul></li>
<li>Do I need to improve the accessibility for people with special needs? Example would be a web site with medical information.
<ul>
<li>How easy the existing UI solutions and my own units work with screen readers?</li>
<li>Is there any special provisions for low-vision users?</li>
<li>Some people (e.g., elderly people, people with arthritis) can have trouble to position the mouse pointer with precision. What is the solution provided by the framework?
<ul>
<li>Frequently power users are more productive with keyboard-oriented interface.</li>
</ul></li>
</ul></li>
<li>What kind of provisions are there for high-performance web sites?
<ul>
<li>Is there any unavoidable calls to servers?</li>
<li>Is it cache/<a href="http://en.wikipedia.org/wiki/Content_Delivery_Network" rel="nofollow">CDN</a> friendly?
<ul>
<li>Can I create my own CDN distribution?</li>
<li>Is there any unavoidable calls to <em>local</em> servers?</li>
</ul></li>
</ul></li>
<li>What kind of community are there? Example: 1 developer vs. 50 developers.
<ul>
<li>Who are other users (companies, and individuals)?
<ul>
<li>How do they use the framework? The use can be insignificant.</li>
</ul></li>
<li>What are the support channels? Examples: forums, mailing lists, IRC channels, and so on.</li>
<li>Is there a commercial option for support?</li>
<li>What books and web sites are available? Examples: blog posts, slides, screencasts, and so on.</li>
</ul></li>
</ul>
<p>Don't be afraid if some answers are negative. It just means that either you should look for solutions from several sources, or roll it out on your own. The problem with the former is that the more sources you have, the more difficult to make them work together without hiccups and excessive bloat. The problem with your own solution is that while you may taylor it to fit your situation perfectly (if you have all necessary talents and resources), it wouldn't be as battle-tested and watched by 1000s eyes as existing frameworks. I am not talking about bugs (bugs are easy as long as you have time to do all the testing), I am talking about selected design decisions, algorithms, and other brainy stuff.</p>
<p>I am a Dojo developer ⇒ I use Dojo. Why? :-) If you have to ask:</p>
<ul>
<li>You can read my reasons I listed responding to similar question here: <a href="http://stackoverflow.com/questions/394601/which-javascript-framework-jquery-vs-dojo-vs/394668#394668">Why Dojo…</a>.</li>
<li>This is what I answered when the question was specifically about JS on high-load web sites: <a href="http://stackoverflow.com/questions/1191925/which-javascript-framework-is-generally-used-for-high-performance-websites/1192686#1192686">specific considerations for high-performance scenarios</a>.</li>
</ul>
http://stackoverflow.com/questions/1277225/translating-json-into-custom-dijit-objects/1282635#12826351Answer by Eugene Lazutkin for Translating JSON into custom dijit objectsEugene Lazutkin2009-08-15T19:28:31Z2009-08-15T19:28:31Z<p>First of all let me point out that JSON produced by <code>dojo.formToJson()</code> is not enough to recreate the original widgets:</p>
<pre><code>{"field1": "value1", "field2": "value2"}
</code></pre>
<p><code>field1</code> can be literally anything: a checkbox, a radio button, a select, a text area, a text box, or anything else. You have to be more specific what widgets to use to represent fields. And I am not even touching the whole UI presentation layer: placement, styling, and so on.</p>
<p>But it is possible to a certain degree.</p>
<p>If we want to use Dojo widgets (Dijits), we can leverage the fact that they all are created uniformly:</p>
<pre><code>var myDijit = new dijit.form.DijitName(props, node);
</code></pre>
<p>In this line:</p>
<ul>
<li><code>dijit.form.DijitName</code> is a dijit's class.</li>
<li><code>props</code> is a dijit-specific properties.</li>
<li><code>node</code> is an anchor node where to place this dijit. It is optional, and you don't need to specify it, but at some point you have to insert your dijit manually.</li>
</ul>
<p>So let's encode this information as a JSON string taking this dijit snippet as an example:</p>
<pre><code>var myDijit = new dijit.form.DropDownSelect({
options: [
{ label: 'foo', value: 'foo', selected: true },
{ label: 'bar', value: 'bar' }
]
}, "myNode");
</code></pre>
<p>The corresponding JSON can be something like that:</p>
<pre><code>{
type: "DropDownSelect",
props: {
options: [
{ label: 'foo', value: 'foo', selected: true },
{ label: 'bar', value: 'bar' }
]
},
node: "myNode"
}
</code></pre>
<p>And the code to parse it:</p>
<pre><code>function createDijit(json){
if(!json.type){
throw new Error("type is missing!");
}
var cls = dojo.getObject(json.type, false, dijit.form);
if(!cls){
// we couldn't find the type in dijit.form
// dojox widget? custom widget? let's try the global scope
cls = dojo.getObject(json.type, false);
}
if(!cls){
throw new Error("cannot find your widget type!");
}
var myDijit = new cls(json.props, json.node);
return myDijit;
}
</code></pre>
<p>That's it. This snippet correctly handles the dot notation in types, and it is smart enough to check the global scope too, so you can use JSON like that for your custom dijits:</p>
<pre><code>{
type: "my.form.Box",
props: {
label: "The answer is:",
value: 42
},
node: "answer"
}
</code></pre>
<p>You can treat DOM elements the same way by wrapping <code>dojo.create()</code> function, which unifies the creation of DOM elements:</p>
<pre><code>var myWidget = dojo.create("input", {
type: "text",
value: "42"
}, "myNode", "replace");
</code></pre>
<p>Obviously you can specify any placement option, or no placement at all.</p>
<p>Now let's repeat the familiar procedure and create our JSON sample:</p>
<pre><code>{
tag: "input",
props: {
type: "text",
value: 42
},
node: "myNode",
pos: "replace"
}
</code></pre>
<p>And the code to parse it is straightforward:</p>
<pre><code>function createNode(json){
if(!json.tag){
throw new Error("tag is missing!");
}
var myNode = dojo.create(json.tag, json.props, json.node, json.pos);
return myNode;
}
</code></pre>
<p>You can even categorize JSON items dynamically:</p>
<pre><code>function create(json){
if("tag" in json){
// this is a node definition
return createNode(json);
}
// otherwise it is a dijit definition
return createDijit(json);
}
</code></pre>
<p>You can represent your form as an array of JSON snippets we defined earlier and go over it creating your widgets:</p>
<pre><code>function createForm(array){
dojo.forEach(array, create);
}
</code></pre>
<p>All functions are trivial and essentially one-liners — just how I like it ;-)</p>
<p>I hope it'll give you something to build on your own custom solution.</p>
http://stackoverflow.com/questions/1224128/dojo-dnd-avatar-positioning/1225397#12253970Answer by Eugene Lazutkin for Dojo dnd: Avatar positioningEugene Lazutkin2009-08-04T01:44:36Z2009-08-14T08:54:11Z<p>Sorry, not possible for technical reasons.</p>
<p>UPDATE: by popular demands these are technical reasons:</p>
<ul>
<li>When you have a node right under the mouse, the node gets all mouse events.</li>
<li>The mouse events bubble up the parent chain.</li>
<li>Now imagine that you move this node with the mouse — this node would always get all mouse events.</li>
<li>It means that any other node, e.g., a target cannot get mouse events unless it is a parent of the moved node. Typically this is not the case.</li>
</ul>
<p>But I know that other people can do it! It should be possible! Yes, it is possible … in principle:</p>
<ul>
<li>Let's register all target nodes.</li>
<li>Let's catch relevant mouse move events directly on the topmost parent (the document).</li>
<li>When we detect a drag operation, let's do the following:
<ol>
<li>Calculate geometry (bounding boxes) of all targets.</li>
<li>On every mouse move lets check if the current mouse position overlaps with a target. Bonus points for an "A+" student: detect overlaps with other nodes, e.g, when a target is partially obscure for cosmetic reasons, and process this situation correctly.</li>
<li>If the current mouse position overlaps with a target, let's initiate "drop is possible" actions, e.g., show some cues so the end user knows that she can drop now.</li>
</ol></li>
</ul>
<p>Why Dojo doesn't do that? For a number of technical reasons (finally we got there!):</p>
<ul>
<li>A node's geometry calculations are notoriously buggy in most browsers. As soon as tables are involved, or any other non-trivial means of placement, you cannot be 100% sure that the bounding box is correct.</li>
<li>Geometry calculations is an expensive operation, and we have to do it at least once on every drag operation for all targets assuming that no changes can be made during the drag operation (not always the case). A browser may reflow nodes for many reasons ⇒ it can move/resize existing targets, so we have to be vigilant.</li>
<li>Typically the calculated boxes are kept in a list ⇒ checking the list for intersections is O(n) (linear) ⇒ doesn't scale well as number of targets grow.</li>
<li>All mouse event handlers should be fast, otherwise a browser's mouse event handling facility can be "broken" leading to unpredictable side-effects. See the previous points for reasons why mouse event processing can be slow.</li>
<li>Improving on the linear search is possible, e.g., 2D spatial trees can be used, but it leads to more (much more) JavaScript code ⇒ more stuff to download on the client side ⇒ typically it isn't worth it.</li>
</ul>
<p>How do I know that? Because Dojo used to have this kind of drag'n'drop in earlier versions, and we got sick and tired fighting problems I described above. Any improvement was an uphill battle, which increased the code size. Finally we decided against reinventing and replicating mechanisms already built in a browser. A browser does virtually the same work: calculates geometry of nodes, finds the underlying node, and dispatches a mouse move event appropriately.</p>
<p>The current implementation doesn't use mouse move events and do not calculate the geometry. Instead it relies on mouse over/out events detected by targets after a drag was started. It works reliably and scales well.</p>
<p>Another wrinkle in this story: Dojo treats targets as containers — a very common use case (shopping carts, rearranging items, editing hierarchies). Linear containers and generic trees are implemented at the moment, custom containers are possible. When dragging and dropping you can see and drop dragged items in a proper position within a target container, e.g., inserting them between existing items. Implementing this feature using geometric calculations and checks would be prohibitively expensive.</p>
http://stackoverflow.com/questions/1226593/custom-validation-of-dijit-textboxes/1231312#12313120Answer by Eugene Lazutkin for Custom validation of dijit textboxesEugene Lazutkin2009-08-05T05:15:05Z2009-08-05T05:15:05Z<p><code>dijit.form.NumberSpinner</code> is derived from <code>dijit.form.ValidationTextBox</code>, and as such it would accept the same arguments (see <a href="http://docs.dojocampus.org/dijit/form/ValidationTextBox" rel="nofollow">dijit.form.ValidationTextBox docs</a> and <a href="http://bugs.dojotoolkit.org/browser/dijit/trunk/form/ValidationTextBox.js" rel="nofollow">inline docs in its source code</a>). Just write a regular expression (as a string) that can validate your input. Something like that should do the trick:</p>
<pre><code>var box = new dijit.form.NumberSpinner({
regExpGen: function(){ return "\\d+0"; }
}, "my_node");
</code></pre>
http://stackoverflow.com/questions/1224937/how-can-i-streamline-improve-beautify-my-auto-form-js-code/1225428#12254280Answer by Eugene Lazutkin for How can I streamline/improve/beautify my auto-form JS code?Eugene Lazutkin2009-08-04T02:00:54Z2009-08-04T02:00:54Z<p>Take a look at <a href="http://docs.dojocampus.org/dojox/form/manager/index?action=show&redirect=dojox%2Fform%2Fmanager" rel="nofollow"><code>dojox.form.manager</code></a> — it does approximately what you want to achieve. It support existing form widgets (<a href="http://docs.dojocampus.org/dojox/form/manager/_Mixin" rel="nofollow">"main" mixin</a>), practically all DOM form elements (<a href="http://docs.dojocampus.org/dojox/form/manager/_NodeMixin" rel="nofollow">node mixin</a>), the unified event processing, and so on. It can be used with unmodified forms.</p>
<p>As you would probably guessed already it is structured as a set of independent mix-ins so you can select only required functionality. For convenience and as an example there a class, which combines all mix-ins together: <a href="http://docs.dojocampus.org/dojox/form/Manager" rel="nofollow"><code>Manager</code></a>.</p>
<p>Read what it does, see if it fits your needs, if not, study its code and borrow what you like. If it misses something — share your feedback on <a href="http://mail.dojotoolkit.org/mailman/listinfo/dojo-interest" rel="nofollow">the mailing list</a> (<a href="http://news.gmane.org/gmane.comp.web.dojo.user" rel="nofollow">on gmane.org</a>). Or, if you can improve it, contribute back.</p>
http://stackoverflow.com/questions/1943082/dojo-require-prevents-firefox-from-rendering-the-pageComment by Eugene Lazutkin on dojo.require() prevents Firefox from rendering the pageEugene Lazutkin2009-12-22T21:00:06Z2009-12-22T21:00:06Z"problem has something to do with the load time of the html" - what time are we talking about? 30 seconds? more? less?http://stackoverflow.com/questions/394601/which-javascript-framework-jquery-vs-dojo-vs/394668#394668Comment by Eugene Lazutkin on Which Javascript framework (jQuery vs Dojo vs ... )?Eugene Lazutkin2009-12-20T01:20:41Z2009-12-20T01:20:41Z@Justin - what dojo forums? use the mailing lists (this option was available forever), and (oh irony!) you can use Stack Overflow. ;-)http://stackoverflow.com/questions/1925700/dojo-dnd-input-boxComment by Eugene Lazutkin on Dojo dnd input boxEugene Lazutkin2009-12-19T07:16:47Z2009-12-19T07:16:47ZWhat are you getting? Any errors? No avatar? Everything should be straightforward with HTML fragments like yours. The most common question is "why I can't select text in my input box, which is a part of a DnD item?" - the answer is "use 'skipForm: true'". But I understand you have a different problem.http://stackoverflow.com/questions/1836008/cant-select-text-in-input-box-on-ie/1843930#1843930Comment by Eugene Lazutkin on Can't select text in input box on IEEugene Lazutkin2009-12-04T01:27:26Z2009-12-04T01:27:26ZIt would help greatly if you mentioned that the input in question was in a draggable element to begin with. Otherwise it was not clear how it is related to Dojo. DnD is thoroughly documented: <a href="http://docs.dojocampus.org/dojo/dnd" rel="nofollow">docs.dojocampus.org/dojo/dnd</a>, including skipForm --- no need to dig in the code for that.http://stackoverflow.com/questions/336859/javascript-var-functionname-function-vs-function-functionname/338053#338053Comment by Eugene Lazutkin on Javascript: var functionName = function() {} vs function functionName() {}Eugene Lazutkin2009-12-03T19:30:52Z2009-12-03T19:30:52ZThat what happens when relying on IE's JavaScript behavior. ;-) Thank you for thoroughness --- I'll update the answer.http://stackoverflow.com/questions/1836008/cant-select-text-in-input-box-on-ieComment by Eugene Lazutkin on Can't select text in input box on IEEugene Lazutkin2009-12-03T04:12:07Z2009-12-03T04:12:07ZHmm, I have a lot of code that boils done to your example that works fine for me. Are you sure you can reproduce the problem with the snippet you gave us?http://stackoverflow.com/questions/1812148/dojo-dnd-move-node-programmatically/1814979#1814979Comment by Eugene Lazutkin on Dojo DnD Move Node ProgrammaticallyEugene Lazutkin2009-11-30T01:45:51Z2009-11-30T01:45:51ZThere is no special API to move nodes between sources. Did you try the one I sketched out for you in my answer (the last sentence)? OK, I'll add an example.http://stackoverflow.com/questions/1816925/jquery-vs-dojo-vs-extjs/1816941#1816941Comment by Eugene Lazutkin on JQuery vs Dojo vs ExtJSEugene Lazutkin2009-11-30T01:39:34Z2009-11-30T01:39:34ZIt depends on the project, doesn't it? Without a standard packaging solution jQuery is dead in the waters for any large-scale client-side project, and with its DOM-oriented API it is not useful for anything else, including server-side projects.http://stackoverflow.com/questions/1816925/jquery-vs-dojo-vs-extjsComment by Eugene Lazutkin on JQuery vs Dojo vs ExtJSEugene Lazutkin2009-11-30T01:36:29Z2009-11-30T01:36:29ZWhat exactly do you need? jQuery is clearly a king of gradual improvements, while Dojo is a federation of libraries covering a lot of things. Another thing would be licensing, which is different too: Dojo is under AFL/BSD, jQuery is under MIT/GPLv2, while Ext is GPLv3 + commercial. In short it means that you can use Dojo and jQuery for whatever you like, while Ext is free for open source projects compatible with GPLv3.http://stackoverflow.com/questions/1795089/need-help-with-jquery-to-javascriptComment by Eugene Lazutkin on Need help with jQuery to JavaScriptEugene Lazutkin2009-11-25T07:26:17Z2009-11-25T07:26:17ZWhat exactly do you want to achieve? Do you want to tell CSS that JavaScript is available? Do you want to do it as early as possible using browser-specific events? Does simple "onload" event work for you? Any additional input would help to give you the right answer.http://stackoverflow.com/questions/1795089/need-help-with-jquery-to-javascript/1795145#1795145Comment by Eugene Lazutkin on Need help with jQuery to JavaScriptEugene Lazutkin2009-11-25T07:22:04Z2009-11-25T07:22:04ZFeel free to ignore the 3rd example. In all fairness he didn't indicate what he wants to achieve by that.http://stackoverflow.com/questions/1745788/different-ui-for-dojo-dnd-than-when-item-is-displayed/1746539#1746539Comment by Eugene Lazutkin on Different UI for Dojo DND than when item is displayedEugene Lazutkin2009-11-17T07:12:03Z2009-11-17T07:12:03ZThis is the official documentation: <a href="http://docs.dojocampus.org/dojo/dnd" rel="nofollow">docs.dojocampus.org/dojo/dnd</a> --- the creator function is described practically at the beginning. How do you suggest to improve the doc so we have less hate and more love in this world?http://stackoverflow.com/questions/1745788/different-ui-for-dojo-dnd-than-when-item-is-displayed/1745958#1745958Comment by Eugene Lazutkin on Different UI for Dojo DND than when item is displayedEugene Lazutkin2009-11-17T07:08:56Z2009-11-17T07:08:56ZUsing this technique it can be done just with CSS rules --- classes used by the avatar are documented, so you can set display:none in CSS without using any JavaScript code.
But the proper way to use different representations for different roles is to define a creator function for your sources. Read all about it and about CSS classes in the official documentation: <a href="http://docs.dojocampus.org/dojo/dnd" rel="nofollow">docs.dojocampus.org/dojo/dnd</a>http://stackoverflow.com/questions/1713241/dojo-drag-and-drop-and-key-handlers/1727686#1727686Comment by Eugene Lazutkin on dojo drag and drop and key handlersEugene Lazutkin2009-11-14T04:30:57Z2009-11-14T04:30:57ZThat would be fine, but it should be implemented as addon, so whoever needs it, should just "dojo.require" it. Sign a CLA, open an enhancement ticket, and attach a patch.http://stackoverflow.com/questions/1632689/dojo-dnd-how-to-access-newly-copied-node-on-ondnddrop-event/1635554#1635554Comment by Eugene Lazutkin on Dojo DnD: how to access newly copied node on onDndDrop event?Eugene Lazutkin2009-10-29T16:56:17Z2009-10-29T16:56:17ZOne problem with topics --- you never know the order of calls. Sometimes (like probably in this case) it is important. I'll withdraw the topic example.