Password checking in dojo - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T11:28:42Z http://stackoverflow.com/feeds/question/308501 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/308501/password-checking-in-dojo 0 Password checking in dojo Richard 2008-11-21T11:36:09Z 2008-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>&lt;form id="form" action="." dojoType="dijit.form.Form" /</code>></p> <p><code>&lt;p</code>>Password: <code>&lt;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>&lt;/p</code>></p> <p><code>&lt;p</code>>Confirm: <code>&lt;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>&lt;/p</code>></p> <p><code>&lt;div dojoType="dijit.form.Button" onClick="onSave"</code>>Save<code>&lt;/div</code>></p> <p><code>&lt;/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#308666 2 Answer by Richard for Password checking in dojo Richard 2008-11-21T12:55:50Z 2008-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>&lt;p</code>>Confirm: <code>&lt;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>&lt;/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#312750 1 Answer by Ed for Password checking in dojo Ed 2008-11-23T17:39:31Z 2008-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> &lt;p&gt;Password: &lt;input type=&quot;password&quot; name=&quot;password1&quot; id=&quot;password1&quot; dojoType=&quot;dijit.form.ValidationTextBox&quot; required=&quot;true&quot; intermediateChanges=false invalidMessage=&quot;Please type a password&quot; /&gt;&lt;/p&gt; &lt;p&gt;Confirm: &lt;input type=&quot;password&quot; name=&quot;password2&quot; id=&quot;password2&quot; dojoType=&quot;dijit.form.ValidationTextBox&quot; required=&quot;true&quot; constraints=&quot;{'other': 'password1'}&quot; validator=confirmPassword intermediateChanges=false invalidMessage=&quot;This password doesn't match your first password&quot; /&gt;&lt;/p&gt; </code></pre>