dojo.xd.js not recognizing dojox.data.CsvStore - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T17:05:28Z http://stackoverflow.com/feeds/question/477085 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/477085/dojo-xd-js-not-recognizing-dojox-data-csvstore 1 dojo.xd.js not recognizing dojox.data.CsvStore Animesh 2009-01-25T02:40:06Z 2009-05-28T22:05:48Z <p>Hi,</p> <p>When I use an import such as</p> <pre><code>&lt;script type="text/javascript" src="http://o.aolcdn.com/dojo/1.2.3/dojo/dojo.xd.js" djConfig="parseOnLoad:true, isDebug: true"&gt;&lt;/script&gt; </code></pre> <p>I get the error</p> <pre><code>dojox.data.CsvStore is not a constructor </code></pre> <p>for lines such as</p> <pre><code>var stateStore = new dojox.data.CsvStore({url: "dojo-passcsv.php", label: "name"}); </code></pre> <p>but the error vanishes if I use an import from a local installation of dojo such as</p> <pre><code>&lt;script type="text/javascript" src="dojo-release-1.2.3/dojo/dojo.js" djConfig="parseOnLoad:true, isDebug: true"&gt;&lt;/script&gt; </code></pre> <p>I would really want to be able to use a CDN hosted dojo installation. Is there a known problem between the DojoX libraries and dojo.xd.js?</p> <p>Thanks in advance,</p> <p>Animesh</p> <p>P.S. The <code>dojo.require("dojox.data.CsvStore");</code> declarations are in place.</p> <p>P.P.S The full "working code" is below. Replacing the CSS and JS references with those from the CDN breaks it.</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8"&gt; &lt;style type="text/css"&gt; @import "dojo-release-1.2.3/dijit/themes/tundra/tundra.css"; @import "dojo-release-1.2.3/dojo/resources/dojo.css" &lt;/style&gt; &lt;script type="text/javascript" src="dojo-release-1.2.3/dojo/dojo.js" djConfig="parseOnLoad:true, isDebug: true"&gt;&lt;/script&gt; &lt;script&gt; dojo.require("dojox.data.CsvStore"); dojo.require("dijit.Tree"); dojo.require("dojo.parser"); &lt;/script&gt; &lt;script type="text/javascript"&gt; var stateStore = new dojox.data.CsvStore({url: "states.csv", label: "name"}); &lt;/script&gt; &lt;/head&gt; &lt;body class="tundra"&gt; &lt;div dojoType="dijit.Tree" store="stateStore" labelAttr="name" label="States"&gt; &lt;/div&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/477085/dojo-xd-js-not-recognizing-dojox-data-csvstore/477190#477190 1 Answer by pierdeux for dojo.xd.js not recognizing dojox.data.CsvStore pierdeux 2009-01-25T05:12:15Z 2009-01-25T05:12:15Z <p>Are you running that code inside <code>dojo.addOnLoad()</code>? As in:</p> <pre><code>dojo.addOnLoad(function(){ dojo.require("dojox.data.CsvStore"); var stateStore = new dojox.data.CsvStore({url: "dojo-passcsv.php", label: "name"}); }); </code></pre> <p>Also, are you using FireFox 3? If so, try putting your <code>&lt;script&gt;&lt;/script&gt;</code> block at the very end of the <code>&lt;body&gt;</code> section, just before the closing <code>&lt;/body&gt;</code> tag. (I know that is not standard practice, but it's related to Firefox's <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444322" rel="nofollow">bug 444322</a>, which should be fixed in release 3.0.6.)</p> <p>Other than that, your code seems to be fine, and such strange discrepancies usually boil down to issues of timing with the loading of dojo modules.</p> http://stackoverflow.com/questions/477085/dojo-xd-js-not-recognizing-dojox-data-csvstore/477848#477848 0 Answer by pierdeux for dojo.xd.js not recognizing dojox.data.CsvStore pierdeux 2009-01-25T15:49:11Z 2009-01-25T16:46:15Z <p>Reacting to your update:</p> <p>I strongly think you should try with <code>dojo.addOnLoad()</code>. Together, the last two <code>&lt;script&gt;</code> sections of your <code>&lt;head&gt;</code> would become:</p> <pre><code>&lt;script&gt; dojo.addOnLoad(function(){ dojo.require("dojox.data.CsvStore"); dojo.require("dijit.Tree"); dojo.require("dojo.parser"); /* I don't think you really need this line */ var stateStore = new dojox.data.CsvStore({url: "states.csv", label: "name"}); }); &lt;/script&gt; </code></pre> <p>The problem with your original code is that you cannot guarantee that the constructor function <code>dojox.data.CsvStore</code> has been read by the time you are about to create your <code>stateStore</code> instance of it. That's where <code>dojo.addOnLoad()</code> comes in, giving you a guarantee that the rest of the javascript was loaded prior to executing the abstract function passed as parameter of <code>addOnLoad()</code>.</p> <p>Because it's an issue of timing, your own original code may work sometimes, maybe not others: it would depend on the download speed and the order in which your browser pieces together the various javascript bits. That's why using dojo's remote library may occasionally give different results from using your own local copy of the dojo library.</p> <p>That said, if you are using Firefox 3 (earlier than 3.0.6), then bear in mind what I said about the known bug. In that case, you may want to put that <code>&lt;script&gt;</code> block immediately before the closing <code>&lt;/body&gt;</code> tag... (That option would work on other browsers as well.)</p> http://stackoverflow.com/questions/477085/dojo-xd-js-not-recognizing-dojox-data-csvstore/923436#923436 0 Answer by Maine for dojo.xd.js not recognizing dojox.data.CsvStore Maine 2009-05-28T22:05:48Z 2009-05-28T22:05:48Z <p><a href="http://stackoverflow.com/questions/477085/dojo-xd-js-not-recognizing-dojox-data-csvstore/477848#477848">Pierdeux</a> was correct on that that <a href="http://stackoverflow.com/questions/467166/dojo-addonload-but-is-dojo-loaded">addOnLoad</a> is the key, but it should have been after dojo.requires, not before. In addition, one has to switch from automatic djConfig.parseOnLoad (it fires before addOnLoad) to manually initiating parser. When you still change that store URL to point to some sensible location (on your site), this works:</p> <pre><code>&lt;script&gt; dojo.require("dojox.data.CsvStore"); dojo.require("dijit.Tree"); dojo.require("dojo.parser"); dojo.addOnLoad(function(){ stateStore = new dojox.data.CsvStore({url: "states.csv", label: "name"}); dojo.parser.parse(); }); &lt;/script&gt; </code></pre> <p>Note: there's another very similar case: <a href="http://stackoverflow.com/questions/559809/does-anyone-have-a-simple-example-of-a-working-dojox-grid-control">Grid, stores, XD</a>.</p>