Validating the Email address in DOJO
<input data-dojo-type="dijit.form.ValidationTextBox"regExpGen="dojox.validate.regexp.emailAddress" required="true" name="email" id="email" missingMessage="Enter the Email id"> </input>
We have to add regExpGen="dojox.validate.regexp.emailAddress" in the
dijit.form.ValidationTextBox
dijit.form.ValidationTextBox
Also, we have to add the following dojo require
dojo.require("dojox.validate.regexp");
No comments:
Post a Comment