ii--L--ii
ii--L--ii

Reputation: 207

Yii 2.0 - Error Message in Minimum Number Validation In Yii2.0

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

Answers (1)

Chinmay Waghmare
Chinmay Waghmare

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

Related Questions