Welcome Guest, Not a member yet? Register   Sign In
Form validation and Checkboxes
#1

[eluser]Unknown[/eluser]
Hello everyone,

I'm a new user in CI, but i definitely love it!!

I used CI (form validation) with 2 checkboxes and these use the same name, different values.
The rules i applied to the checkboxes was isset|callback_checkboxes, but when i submit the form i saw that validation doesn't create the variable $this->validation->checkboxname_error.
Therefore i look into the validation class and i write these lines at line number 231:
// Build the error message
$mfield = ( ! isset($this->_fields[$field])) ? $field : $this->_fields[$field];
$message = sprintf($line, $mfield);
// Set the error variable. Example: $this->username_error
$error = $field.'_error';
$this->$error = $this->_error_prefix.$message.$this->_error_suffix;
$this->_error_array[] = $message;

Instead of these lines:
$field = ( ! isset($this->_fields[$field])) ? $field : $this->_fields[$field];
$this->_error_array[] = sprintf($line, $field);

Now the $this->validation->checkboxname_error is available.

I hope i've done something usefull.

Bye
Cristiano aka Il Viaggiatore


Messages In This Thread
Form validation and Checkboxes - by El Forum - 07-11-2007, 01:26 PM
Form validation and Checkboxes - by El Forum - 10-12-2007, 08:00 AM
Form validation and Checkboxes - by El Forum - 10-14-2007, 03:53 AM
Form validation and Checkboxes - by El Forum - 11-03-2007, 09:42 AM



Theme © iAndrew 2016 - Forum software by © MyBB