垂直显示yii2复选框

Geo*_*off 3 php yii2 yii2-advanced-app

我有一个活动表单,当前水平显示复选框列表,但我希望垂直显示它们。我已将表单布局设置为垂直,但仍将其水平显示:

这是我尝试过的:

//generates an array of permissions 
$options = Permission::value_list(
   Permission::findWhere()->select('name')->andWhere(['not', ['name' => $name]])->all(),
        ['name']
    );
Run Code Online (Sandbox Code Playgroud)

这是表格

   <?php $form = ActiveForm::begin(['layout' => 'vertical']); ?>
     <?= $form->field($model, 'item_children')
        ->checkboxList($options)->label(sprintf("Available %s", $assigning))
       ->hint("Which type of authorization item are you creating") ?>
Run Code Online (Sandbox Code Playgroud)

我需要添加什么:当前它们以这种方式显示。

在此处输入图片说明

我想要垂直显示。

Blu*_*Zed 5

您可以使用separator此处提到的选项:http : //www.yiiframework.com/doc-2.0/yii-helpers-basehtml.html#activeCheckboxList()-detail

这样,您的呼叫将如下所示:

<?php $form = ActiveForm::begin(['layout' => 'vertical']); ?>
    <?= $form->field($model, 'item_children')
        ->checkboxList($options, ['separator'=>'<br/>'])
        ->label(sprintf("Available %s", $assigning))
        ->hint("Which type of authorization item are you creating") ?>
Run Code Online (Sandbox Code Playgroud)

或者您想用作特定情况下的分隔符的任何东西。

希望有帮助...