Answer the question
In order to leave comments, you need to log in
How to set checked in radio button in Yii2?
Good day! There is this line of code:
<?=$form->field($model, 'vip')->radioList(['0' => 'Нет', '1' => 'Да',])->label('VIP Статус') ?>
Answer the question
In order to leave comments, you need to log in
Think so:
But it is also possible like this:
<?php
$model->vip = 0;
?>
<?=$form->field($model, 'vip')->label('VIP Статус') ->radioList(['0' => 'Нет', '1' => 'Да',])?>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question