problem with dojo dijit.form.ValidationTextBox - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T17:38:42Z http://stackoverflow.com/feeds/question/48497 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/48497/problem-with-dojo-dijit-form-validationtextbox 2 problem with dojo dijit.form.ValidationTextBox simon 2008-09-07T15:02:09Z 2008-11-26T03:33:24Z <p>The following xhtml code is not working:</p> <pre><code>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt; &lt;head&gt; &lt;meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /&gt; &lt;link rel="stylesheet" type="text/css" href="/dojotoolkit/dijit/themes/tundra/tundra.css" /&gt; &lt;link rel="stylesheet" type="text/css" href="/dojotoolkit/dojo/resources/dojo.css" /&gt; &lt;script type="text/javascript" src="/dojotoolkit/dojo/dojo.js" djConfig="parseOnLoad: true"/&gt; &lt;script type="text/javascript"&gt; dojo.require("dijit.form.ValidationTextBox"); dojo.require("dojo.parser"); &lt;/script&gt; &lt;/head&gt; &lt;body class="nihilo"&gt; &lt;input type="text" dojoType="dijit.form.ValidationTextBox" size="30" /&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>In FireBug I get the following error message:</p> <pre><code>[Exception... "Component returned failure code: 0x80004003 (NS_ERROR_INVALID_POINTER) [nsIDOMNSHTMLElement.innerHTML]" nsresult: "0x80004003 (NS_ERROR_INVALID_POINTER)" location: "JS frame :: http://localhost:21000/dojotoolkit/dojo/dojo.js :: anonymous :: line 319" data: no] http://localhost:21000/dojotoolkit/dojo/dojo.js Line 319 </code></pre> <p>Any idea what is wrong?</p> http://stackoverflow.com/questions/48497/problem-with-dojo-dijit-form-validationtextbox/48552#48552 0 Answer by John Smithers for problem with dojo dijit.form.ValidationTextBox John Smithers 2008-09-07T16:18:21Z 2008-09-07T16:18:21Z <p>Well, what is dojo.js doing at line 319?</p> http://stackoverflow.com/questions/48497/problem-with-dojo-dijit-form-validationtextbox/48554#48554 0 Answer by Brian Gianforcaro for problem with dojo dijit.form.ValidationTextBox Brian Gianforcaro 2008-09-07T16:21:01Z 2008-09-07T16:21:01Z <p>Where you import dojo.js:</p> <pre><code>&lt;script type="text/javascript" src="/dojotoolkit/dojo/dojo.js" djConfig="parseOnLoad: true"/&gt; </code></pre> <p>It should be:</p> <pre><code>&lt;script type="text/javascript" src="/dojotoolkit/dojo/dojo.js" djConfig="parseOnLoad:true"&gt;&lt;/script&gt; </code></pre> <p>Have fun with dojo, it's can do some cool stuff.</p> <p>Brian Gianforcaro</p> http://stackoverflow.com/questions/48497/problem-with-dojo-dijit-form-validationtextbox/48717#48717 0 Answer by simon for problem with dojo dijit.form.ValidationTextBox simon 2008-09-07T19:44:06Z 2008-09-07T19:44:06Z <p>Hi Brian Gianforcaro</p> <p>I applied your change but it did not help.</p> <p>By the way my test is available under <a href="http://www.tasix.ch/Greter/test.xhtml" rel="nofollow">Test</a></p> http://stackoverflow.com/questions/48497/problem-with-dojo-dijit-form-validationtextbox/48895#48895 0 Answer by Brian Gianforcaro for problem with dojo dijit.form.ValidationTextBox Brian Gianforcaro 2008-09-07T23:27:28Z 2008-09-07T23:27:28Z <p>Are you sure your pointing to the right path in the script tags?</p> <p>I put it up on the web, check it out.</p> <p>The left is Dojo parsed input, the right is an regular old input. <a href="http://tncrocks.com/test/stackoverflow/" rel="nofollow">Link</a></p> <p>I'm on OS X, using firefox 3.0.1 I get no errors under firebug. </p> http://stackoverflow.com/questions/48497/problem-with-dojo-dijit-form-validationtextbox/49259#49259 1 Answer by simon for problem with dojo dijit.form.ValidationTextBox simon 2008-09-08T07:13:55Z 2008-09-08T07:22:57Z <p>Hi Brian Gianforcaro</p> <p>The problem seams to be the ending of the file...</p> <ul> <li>If I name the file <a href="http://www.tasix.ch/Greter/test2.html" rel="nofollow">test2.html</a> everything works.</li> <li>If I name the file <a href="http://www.tasix.ch/Greter/test2.xhtml" rel="nofollow">test2.xhtml</a> I get the error message.</li> </ul> <p>The diverence between the two seams to be the Content-Type in the response header from apache.</p> <ul> <li>For .html it is Content-Type text/html; charset=ISO-8859-1</li> <li>For .xhtml it is Content-Type application/xhtml+xml</li> </ul> http://stackoverflow.com/questions/48497/problem-with-dojo-dijit-form-validationtextbox/289725#289725 0 Answer by Serhii for problem with dojo dijit.form.ValidationTextBox Serhii 2008-11-14T10:35:00Z 2008-11-14T10:35:00Z <p>There are some similar tickets on the dojo trac page:</p> <p><a href="http://trac.dojotoolkit.org/search?q=xhtml+ns_error&amp;noquickjump=1&amp;ticket=on" rel="nofollow">http://trac.dojotoolkit.org/search?q=xhtml+ns_error&amp;noquickjump=1&amp;ticket=on</a></p> <p>Probably you are facing a bug and you will need to fill a new ticket.</p> http://stackoverflow.com/questions/48497/problem-with-dojo-dijit-form-validationtextbox/319678#319678 0 Answer by InsDel for problem with dojo dijit.form.ValidationTextBox InsDel 2008-11-26T03:33:24Z 2008-11-26T03:33:24Z <p>The problem is that innerHTML is an unofficial property that is not part of the W3C specifications, and thus may or may not work depending upon the browser, especially when the page is being rendered as a XHTML file rather than a HTML file. See <a href="http://domscripting.com/blog/display/35" rel="nofollow">here</a> and <a href="http://www.quirksmode.org/bugreports/archives/2004/11/innerhtml_in_xh.html" rel="nofollow">here</a>.</p>