我希望在我的表单中预先选择单选按钮.
<?= $form->field($model,'config')->radioList(['1'=>'Automatic Entry',2=>'Manual Entry']) ->label('Barcode/Book No Generation'); ?>@H_404_3@
@H_404_3@
预选值取自$model-> config.这意味着您应该将该属性设置为您想要预选的值:
$model->config = '1'; $form->field($model,'config')->radioList([ '1' => 'Automatic Entry','2' => 'Manual Entry',]);
相关文档是在ActiveForm课程中.
@H_404_3@ 原文链接:https://www.f2er.com/php/135406.html