problem with dojo dijit.form.ValidationTextBox - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T17:38:42Zhttp://stackoverflow.com/feeds/question/48497http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/48497/problem-with-dojo-dijit-form-validationtextbox2problem with dojo dijit.form.ValidationTextBoxsimon2008-09-07T15:02:09Z2008-11-26T03:33:24Z
<p>The following xhtml code is not working:</p>
<pre><code><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" type="text/css" href="/dojotoolkit/dijit/themes/tundra/tundra.css" />
<link rel="stylesheet" type="text/css" href="/dojotoolkit/dojo/resources/dojo.css" />
<script type="text/javascript" src="/dojotoolkit/dojo/dojo.js" djConfig="parseOnLoad: true"/>
<script type="text/javascript">
dojo.require("dijit.form.ValidationTextBox");
dojo.require("dojo.parser");
</script>
</head>
<body class="nihilo">
<input type="text"
dojoType="dijit.form.ValidationTextBox"
size="30" />
</body>
</html>
</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#485520Answer by John Smithers for problem with dojo dijit.form.ValidationTextBoxJohn Smithers2008-09-07T16:18:21Z2008-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#485540Answer by Brian Gianforcaro for problem with dojo dijit.form.ValidationTextBoxBrian Gianforcaro2008-09-07T16:21:01Z2008-09-07T16:21:01Z<p>Where you import dojo.js:</p>
<pre><code><script type="text/javascript" src="/dojotoolkit/dojo/dojo.js" djConfig="parseOnLoad: true"/>
</code></pre>
<p>It should be:</p>
<pre><code><script type="text/javascript" src="/dojotoolkit/dojo/dojo.js" djConfig="parseOnLoad:true"></script>
</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#487170Answer by simon for problem with dojo dijit.form.ValidationTextBoxsimon2008-09-07T19:44:06Z2008-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#488950Answer by Brian Gianforcaro for problem with dojo dijit.form.ValidationTextBoxBrian Gianforcaro2008-09-07T23:27:28Z2008-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#492591Answer by simon for problem with dojo dijit.form.ValidationTextBoxsimon2008-09-08T07:13:55Z2008-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#2897250Answer by Serhii for problem with dojo dijit.form.ValidationTextBoxSerhii2008-11-14T10:35:00Z2008-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&noquickjump=1&ticket=on" rel="nofollow">http://trac.dojotoolkit.org/search?q=xhtml+ns_error&noquickjump=1&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#3196780Answer by InsDel for problem with dojo dijit.form.ValidationTextBoxInsDel2008-11-26T03:33:24Z2008-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>