Vadym
Vadym

Reputation: 1077

How to change label text of the ActiveField?

I have created new Yii2 basic project and want to dig in.

There is a Username field on login page: enter image description here

I want to change label 'Username' to a custom one, e.g. 'My superb label'. I have read the manual: http://www.yiiframework.com/doc-2.0/yii-widgets-activefield.html

After investigating a little I've got the next result: enter image description here

I have changed only template and it has changed the layout:

<?= $form->field($model, 'username', [
    "template" => "<label> My superb label </label>\n{input}\n{hint}\n{error}"
])?>

How to change the text of the label in a correct way? What is best practice?

Upvotes: 32

Views: 64341

Answers (5)

Ali Algmaty
Ali Algmaty

Reputation: 1

just change the lable from modles like this

'symptomsBefore' => Yii::t('app', 'Has The Patient Suffered from the same or similar symptoms before'),

Upvotes: 0

Wiktor
Wiktor

Reputation: 21

You can also add such function to model:

public function attributeLabels()
{
    return [
        'username' => 'My Login',
        'password' => 'My Pasword',
        'rememberMe' => 'Remember Me, please',
    ];
}

Upvotes: 2

Tayyab Hussain
Tayyab Hussain

Reputation: 1838

there is an another cool way.

<?= $form->field($model, 'username')->textInput(['class'=>'field-class'])->label('Your Label',['class'=>'label-class']) ?>

Upvotes: 24

Vadym
Vadym

Reputation: 1077

Okay, just override attributeLabels in LoginForm.php:

/**
 * Returns the attribute labels.
 *
 * See Model class for more details
 *  
 * @return array attribute labels (name => label).
 */
public function attributeLabels()
{
    return [
        'username' => 'Логин',
        'password' => 'Пароль',
    ];
}

Upvotes: 19

Mihai P.
Mihai P.

Reputation: 9357

<?= $form->field($model, 'username')->textInput()->label('My superb label') ?>

http://www.yiiframework.com/doc-2.0/yii-bootstrap-activefield.html#label()-detail

Upvotes: 55

Related Questions