Yii2:如何使用Html助手制作在线广播列表

时间:2015-04-03 04:33:41

标签: php yii2

我有这个radioList:

Html::radioList('name,null,$array['class' => 'form-control']);

它引用了垂直的radioList,但我希望它是水平的。

1 个答案:

答案 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>';
        }
    ])?>