php – 如何在yii2 RadioList()中预选/检查默认单选按钮?

前端之家收集整理的这篇文章主要介绍了php – 如何在yii2 RadioList()中预选/检查默认单选按钮?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望在我的表单中预先选择单选按钮.
<?= $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

猜你在找的PHP相关文章