Adding Text and Trim Validation in Joomla Registration

Your code modifications and patches you want to share with others.
Locked
User avatar
arjuninfo
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 113
Joined: Sat Aug 08, 2009 12:50 pm
Location: India ,chennai

Adding Text and Trim Validation in Joomla Registration

Post by arjuninfo » Sat Oct 30, 2010 2:05 pm

Hi,

I like to give a tutorial to add trim function and text alert validation in joomla registration .


First open : --- media/system/js/validate.js

On the top of the first line ,add this code


function trim(s)
{
return s.replace(/^\s+|\s+$/, '');
}

Add the trim function in the existing code :

validate: function(el)
{
// If the field is required make sure it has a value
if ($(el).hasClass('required')) {
if (!(trim($(el).getValue()))) {
this.handleResponse(false, el);
return false;
}
}

Then add this following code in the line around 171

if (el.labelref) {

val = $(el.labelref).id+"_id";
document.getElementById(val).style.display='block';


$(el.labelref).addClass('invalid');
}
} else {
el.removeClass('invalid');
if (el.labelref) {
val = $(el.labelref).id+"_id";
document.getElementById(val).style.display='none';

$(el.labelref).removeClass('invalid');
}
M.Arjun

User avatar
arjuninfo
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 113
Joined: Sat Aug 08, 2009 12:50 pm
Location: India ,chennai

Re: Adding Text and Trim Validation in Joomla Registration

Post by arjuninfo » Sat Oct 30, 2010 2:06 pm

Then goto

components\com_user\views\register\tmpl\default this php

<tr>
<td height="40">
<label id="usernamemsg" for="username">
<?php echo JText::_( 'User name' ); ?>:
</label>
</td>
<td>
<input type="text" id="username" name="username" size="40" value="<?php echo $this->escape($this->user->get( 'username' ));?>" class="inputbox required validate-username" maxlength="25" /> *<span id="usernamemsg_id" style="display:none">Enter User Name</span>
</td>
</tr>
<tr>
<td height="40">
<label id="emailmsg" for="email">
<?php echo JText::_( 'Email' ); ?>:
</label>
</td>
<td>
<input type="text" id="email" name="email" size="40" value="<?php echo $this->escape($this->user->get( 'email' ));?>" class="inputbox required validate-email" maxlength="100" /> *<span id="emailmsg_id" style="display:none">Enter Correct Email Id</span>
</td>
</tr>
<tr>
<td height="40">
<label id="pwmsg" for="password">
<?php echo JText::_( 'Password' ); ?>:
</label>
</td>
<td>
<input class="inputbox required validate-password" type="password" id="password" name="password" size="40" value="" /> *<span id="pwmsg_id" style="display:none">Enter Password</span>
</td>
</tr>
<tr>
<td height="40">
<label id="pw2msg" for="password2">
<?php echo JText::_( 'Verify Password' ); ?>:
</label>
</td>
<td>
<input class="inputbox required validate-passverify" type="password" id="password2" name="password2" size="40" value="" /> *<span id="pw2msg_id" style="display:none">Enter Correct Password</span>
</td>
</tr>
M.Arjun

User avatar
arjuninfo
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 113
Joined: Sat Aug 08, 2009 12:50 pm
Location: India ,chennai

Re: Adding Text and Trim Validation in Joomla Registration

Post by arjuninfo » Sat Oct 30, 2010 2:08 pm

The Full code of media/system/js/validate.js


--------------------------------------------------------------------


/**
* @version $Id: validate.js 7401 2007-05-14 04:12:55Z eddieajau $
* @package Joomla
* @copyright Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
* @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/

/**
* Unobtrusive Form Validation library
*
* Inspired by: Chris Campbell <www.particletree.com>
*
* @package Joomla.Framework
* @subpackage Forms
* @since 1.5
*/
function trim(s)
{
return s.replace(/^\s+|\s+$/, '');
}



var JFormValidator = new Class({
initialize: function()
{
// Initialize variables
this.handlers = Object();
this.custom = Object();

// Default handlers
this.setHandler('username',
function (value) {
regex = new RegExp("[\<|\>|\"|\'|\%|\;|\(|\)|\&]", "i");
return !regex.test(value);
}
);




this.setHandler('password',
function (value) {
regex=/^\S[\S ]{2,98}\S$/;
return regex.test(value);
}
);

this.setHandler('numeric',
function (value) {
regex=/^(\d|-)?(\d|,)*\.?\d*$/;
return regex.test(value);
}
);

this.setHandler('email',
function (value) {
regex=/^[a-zA-Z0-9._-]+@([a-zA-Z0-9.-]+\.)+[a-zA-Z0-9.-]{2,4}$/;
return regex.test(value);
}
);



// Attach to forms with class 'form-validate'
var forms = $$('form.form-validate');
forms.each(function(form){ this.attachToForm(form); }, this);
},

setHandler: function(name, fn, en)
{
en = (en == '') ? true : en;
this.handlers[name] = { enabled: en, exec: fn };
},

attachToForm: function(form)
{
// Iterate through the form object and attach the validate method to all input fields.
$A(form.elements).each(function(el){
el = $(el);
if ((el.getTag() == 'input' || el.getTag() == 'button') && el.getProperty('type') == 'submit') {
if (el.hasClass('validate')) {
el.onclick = function(){return document.formvalidator.isValid(this.form);};
}
} else {
el.addEvent('blur', function(){return document.formvalidator.validate(this);});

}
});
},

validate: function(el)
{
// If the field is required make sure it has a value
if ($(el).hasClass('required')) {
if (!(trim($(el).getValue()))) {
this.handleResponse(false, el);
return false;
}
}

// Only validate the field if the validate class is set
var handler = (el.className && el.className.search(/validate-([a-zA-Z0-9\_\-]+)/) != -1) ? el.className.match(/validate-([a-zA-Z0-9\_\-]+)/)[1] : "";
if (handler == '') {
this.handleResponse(true, el);
return true;
}

// Check the additional validation types
if ((handler) && (handler != 'none') && (this.handlers[handler]) && $(el).getValue()) {
// Execute the validation handler and return result
if (this.handlers[handler].exec($(el).getValue()) != true) {
this.handleResponse(false, el);
return false;
}
}

// Return validation state
this.handleResponse(true, el);
return true;
},

isValid: function(form)
{
var valid = true;

// Validate form fields
for (var i=0;i < form.elements.length; i++) {
if (this.validate(form.elements) == false) {
valid = false;
}
}

// Run custom form validators if present
$A(this.custom).each(function(validator){
if (validator.exec() != true) {
valid = false;
}
});

return valid;
},

handleResponse: function(state, el)
{
// Find the label object for the given field if it exists
if (!(el.labelref)) {
var labels = $$('label');
labels.each(function(label){
if (label.getProperty('for') == el.getProperty('id')) {
el.labelref = label;
}
});
}

// Set the element and its label (if exists) invalid state
if (state == false) {
el.addClass('invalid');
if (el.labelref) {

val = $(el.labelref).id+"_id";
document.getElementById(val).style.display='block';

$(el.labelref).addClass('invalid');
}
} else {
el.removeClass('invalid');
if (el.labelref) {
val = $(el.labelref).id+"_id";
document.getElementById(val).style.display='none';
$(el.labelref).removeClass('invalid');
}
}
}
});

document.formvalidator = null;
Window.onDomReady(function(){
document.formvalidator = new JFormValidator();
});

---------------------------------------------------------------------------------------
You do not have the required permissions to view the files attached to this post.
M.Arjun

desmondh
Joomla! Fledgling
Joomla! Fledgling
Posts: 3
Joined: Sun Aug 06, 2006 5:44 pm
Location: South Africa

Re: Adding Text and Trim Validation in Joomla Registration

Post by desmondh » Sun Nov 14, 2010 10:41 am

Could you tell me how to change the validation for the password? I know it is in the validate.js as well but when I change it, I don't see the result.

jtanmay
Joomla! Apprentice
Joomla! Apprentice
Posts: 32
Joined: Thu Feb 04, 2010 6:15 pm
Contact:

Re: Adding Text and Trim Validation in Joomla Registration

Post by jtanmay » Tue Jan 18, 2011 3:46 pm

Can this be done without changing the core files?

User avatar
arjuninfo
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 113
Joined: Sat Aug 08, 2009 12:50 pm
Location: India ,chennai

Re: Adding Text and Trim Validation in Joomla Registration

Post by arjuninfo » Fri Jan 21, 2011 4:51 am

Not its not possible ...
M.Arjun


Locked

Return to “Core Hacks and Patches”