I have a Yii form accept first name
, last name
and email
from user. Using an add more
link, users can add multiple rows of those three elements.
For email validation, unique
and required
are set in model rules and everything works fine. I am using JavaScript to create addition row on clicking add more
link.
Problem
On the first row my values are John, Newman, [email protected]
and the second row, i'm entering Mathew, Heyden, [email protected]
. In this case email address is duplicated. None of the validation rules (require
and unique
) is capable of validating this. Can some one suggest a better method to validate this ?
Update:
I created a custom validation function and i guess this is enough to solve my problem. Can someone tell me how to access the whole form data
/ post data
in a custom validation function ?
public function uniqueOnForm($attribute){
// This post data is not working
error_log($_REQUEST, true);
$this->addError($attribute, 'Sorry, email address shouldn\'t be repeated');
}
because you are using tabular input (multiple row) , so make sure input field as an array. might be like this :