Answer the question
In order to leave comments, you need to log in
Yii 2 checkboxList to column?
I want to receive
and it turns out
the code
<?=
$form->field($model, 'planets')->checkboxList(
['Меркурий', 'Венера', 'Земля', 'Марс', 'Юпитер', 'Сатурн', 'Уран', 'Нептун']
)->label('Какие планеты по вашему мнению обитаемы?')
?>
Answer the question
In order to leave comments, you need to log in
to see really the cache was clogged.
today after the refresh everything is ok
Для тех, кто еще сталкивается с подобным. Проверьте, что вы используете yii\bootstrap\ActiveForm, а не yii\widgets\ActiveForm
Тот же gii по стандартным шаблонам генерирует с использованием yii\widgets\ActiveForm
надо добавить в option параметр 'separator' => '<br>'
<?=
$form->field($model, 'planets')->checkboxList(
['Меркурий', 'Венера', 'Земля', 'Марс', 'Юпитер', 'Сатурн', 'Уран', 'Нептун'],
['separator' => '<br>']
)->label('Какие планеты по вашему мнению обитаемы?')
?>
And this is already, as it were, CSS doing, dig in the direction of your styles.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question