Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

yii2 active field template

It seems template for checkbox in sample yii2 project doesn't not apply correctly

<?= $form->field($model, 'rememberMe', [
    'template' => "<div class=\"col-lg-offset-1 col-lg-3\">{input}</div>\n<div class=\"col-lg-8\">{error}</div>",
])->checkbox() ?>

what's wrong here?

like image 343
Herokiller Avatar asked Nov 06 '14 09:11

Herokiller


2 Answers

You need to pass template like in this example

<?= $form->field($model, 'rememberMe')
->checkbox(
['template' => '<div class="form-group">{input}<label class="control-label">{label}</label></div>']
) ?>
like image 104
ustmaestro Avatar answered Nov 28 '22 07:11

ustmaestro


Sad, that people add - to this great answer. This works great!

But you have to switch \yii\widget\ActiveForm class to \yii\bootstrap\ActiveForm

So:

\yii\bootstrap\ActiveForm:beginForm();

echo $form->field($model, 'terms_condition',['checkboxTemplate'=>"<div class=\"checkbox\">\n{input}
{beginLabel}\n{labelTitle}\n{endLabel}\n{error}\n{hint}\n</div>"])->checkbox(['value'=>true])

\yii\bootstrap\ActiveForm:endForm();
like image 22
Arturs Smirnovs Avatar answered Nov 28 '22 06:11

Arturs Smirnovs