Password checking in dojo - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T11:28:42Zhttp://stackoverflow.com/feeds/question/308501http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/308501/password-checking-in-dojo0Password checking in dojoRichard2008-11-21T11:36:09Z2008-11-23T17:39:31Z
<p>I want to check that two passwords are the same using Dojo.</p>
<p>Here is the HTML I have:</p>
<p><code></p>
<blockquote>
<p><code><form id="form" action="." dojoType="dijit.form.Form" /</code>></p>
<p><code><p</code>>Password: <code><input type="password"<br />
name="password1"<br />
id="password1"<br />
dojoType="dijit.form.ValidationTextBox"<br />
required="true"<br />
invalidMessage="Please type a password" /</code>><code></p</code>></p>
<p><code><p</code>>Confirm: <code><input type="password"<br />
name="password2"<br />
id="password2"<br />
dojoType="dijit.form.ValidationTextBox"<br />
required="true"<br />
invalidMessage="This password doesn't match your first password" /</code>><code></p</code>></p>
<p><code><div dojoType="dijit.form.Button" onClick="onSave"</code>>Save<code></div</code>></p>
<p><code></form</code>>
</code></p>
</blockquote>
<p>Here is the JavaScript I have so far:</p>
<blockquote>
<p><code>
var onSave = function() {<br />
if(dijit.byId('form').validate()) { alert('Good form'); }<br />
else { alert('Bad form'); }<br />
}
</code></p>
</blockquote>
<p>Thanks for your help. I could do this in pure JavaScript, but I'm trying to find the Dojo way of doing it.</p>
http://stackoverflow.com/questions/308501/password-checking-in-dojo/308666#3086662Answer by Richard for Password checking in dojoRichard2008-11-21T12:55:50Z2008-11-21T12:55:50Z<p>I've solved it!</p>
<p>This <a href="http://dojotoolkit.org/forum/dijit-dijit-0-9/dijit-support/password-confirmation-validation" rel="nofollow">page on the Dojo forum</a> was helpful.</p>
<p>I changed the HTML for the confirm password to:</p>
<blockquote>
<p><code>
<code><p</code>>Confirm: <code><input type="password"<br />
name="password2"<br />
id="password2"<br />
dojoType="dijit.form.ValidationTextBox"<br />
required="true"<br />
validator="return theSame(this, dijit.byId('password1'));"<br />
invalidMessage="This password doesn't match your first password" /</code>><code></p</code>>
</code></p>
</blockquote>
<p>The only difference is the added <em>validator</em> parameter.</p>
<p>And I created the following JavaScript function:</p>
<blockquote>
<p><code>
function(dojoTxt1, dojoTxt2) {<br />
return dojoTxt1.getValue() == dojoTxt2.getValue();<br />
}
</code></p>
</blockquote>
<p>I think you can also use the <em>validator</em> parameter to create regular expressions to test against, but the <a href="http://api.dojotoolkit.org/jsdoc/dijit/1.2/dijit.form.ValidationTextBox.validator" rel="nofollow">documentation</a> isn't very clear.</p>
http://stackoverflow.com/questions/308501/password-checking-in-dojo/312750#3127501Answer by Ed for Password checking in dojoEd2008-11-23T17:39:31Z2008-11-23T17:39:31Z<p>This will get you a lot closer</p>
<ul>
<li>setting intermediateChanges=false keeps the validator running at every keystroke.</li>
<li>the validation dijit's constraint object is passed to its validator. Use this to pass in the other password entry</li>
<li>dijit.form.Form automatically calls isValid() on all its child dijits when it's submitted, and cancels submittion if they don't all validate. I though the invalid ones would get their error message, but they don't. That's left as an exercise for the reader ;-)</li>
</ul>
<p>the validation function:</p>
<pre><code>
function confirmPassword(value, constraints)
{
var isValid = false;
if(constraints && constraints.other) {
var otherInput = dijit.byId(constraints.other);
if(otherInput) {
var otherValue = otherInput.value;
console.log("%s == %s ?", value, otherValue);
isValid = (value == otherValue);
}
}
return isValid;
}
function onsubmit()
{
var p1 = dijit.byId('password1').value;
var p2 = dijit.byId('password2').value;
return p1 == p2;
}
</code></pre>
<p>and the input objects:</p>
<pre><code>
<p>Password: <input type="password"
name="password1"
id="password1"
dojoType="dijit.form.ValidationTextBox"
required="true"
intermediateChanges=false
invalidMessage="Please type a password" /></p>
<p>Confirm: <input type="password"
name="password2"
id="password2"
dojoType="dijit.form.ValidationTextBox"
required="true"
constraints="{'other': 'password1'}"
validator=confirmPassword
intermediateChanges=false
invalidMessage="This password doesn't match your first password" /></p>
</code></pre>