我有这个radioList:
Html::radioList('name,null,$array['class' => 'form-control']);
它引用了垂直的radioList,但我希望它是水平的。
答案 0 :(得分:0)
<?=Html::activeRadioList($model, $attribute, [1 => 'option1', 2 => 'option2'], [
'item' => function ($index, $label, $name, $checked, $value) {
return '<label class="radio-inline">' . Html::radio($name, $checked, ['value' => $value]) . $label . '</label>';
}
])?>