Reputation: 207
I am having trouble locating the error message of the Minimum Number Validation.. i tried overwriting it with this code
public function rules()
{
return [
[['login_name'], 'string', 'min' => 5, 'message' => 'Please input more than 5 characters.'],
];
}
but it did not change the default error message which is:
The login name must be at least five characters.
i wanna know where the default error message is..
and is there a way to overwrite this error message..
Thanks in advance.
Upvotes: 0
Views: 1420
Reputation: 5456
Try:
public function rules()
{
return [
[['login_name'], 'string', 'min' => 5, 'tooShort' => 'Please input more than 5 characters.'],
];
}
For more details refer to this link.
Upvotes: 4