Dojo - XHTML validation ? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T17:28:19Z http://stackoverflow.com/feeds/question/530560 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/530560/dojo-xhtml-validation 0 Dojo - XHTML validation ? Greg82 2009-02-09T23:34:15Z 2009-02-10T15:05:54Z <p>Is it possible to make Dojo (javascript) widgets validate for XHTML?</p> <p>If so, how?</p> <p>Can it be something as simple as using CDATA?</p> http://stackoverflow.com/questions/530560/dojo-xhtml-validation/530607#530607 1 Answer by Chris KL for Dojo - XHTML validation ? Chris KL 2009-02-09T23:55:45Z 2009-02-09T23:55:45Z <p>Yes, instead of using the dojoType="dojo.foo.bar" non-standard attribute, you instead need to have a document onload event that "takes over" standard HTML tags in your document and rewrites them into Dojo ones.</p> http://stackoverflow.com/questions/530560/dojo-xhtml-validation/532658#532658 0 Answer by Maine for Dojo - XHTML validation ? Maine 2009-02-10T14:55:44Z 2009-02-10T15:05:54Z <p>CDATA won't help you here. If you really want to write code according to XHTML DTD/schema, you can do it, but cannot take advantage of the flexibility of Dojo markup language (DojoML). What you can do is that you define your own way to mark the widgets, like <code>&lt;div class="dojoButton"/></code> and then you instantiate them on the page load using something like:</p> <pre><code>dojo.query('div[class=dojoButton]').instantiate( dijit.form.Button, {} ); </code></pre> <p>Before you do that, please have a look at this paragraph <a href="http://www.sitepen.com/blog/2008/10/27/debunking-dojo-toolkit-myths/" rel="nofollow">Dojo Doesn’t Validate</a> <em>(in the middle of the article)</em> and this <a href="http://higginsforpresident.net/2008/08/dojo-degradability/" rel="nofollow">Dojo Degradability</a>.</p>