Tuesday, December 22, 2009

ExtJS, email validation using regex

ExtJS doesn't support email validation with all real world email addresses using vtype :'email'..... but ExtJS has given us regex config for any textfield..... so idea is to use that regex for email validation on any textfield used for storing email......


Email Validation How to


validate email field using regex for emails which contains ' character as well....
for example :
abc-123.abc'snepal@mavendeveloper.com

Example


xtype: 'textfield',
fieldLabel: 'email',
regex: /^([\w\-\'\-]+)(\.[\w-\'\-]+)*@([\w\-]+\.){1,5}([A-Za-z]){2,4}$/,


cheers

hav fun



ExtJS, email validation using regex

No comments:

Post a Comment