如何在活动论坛中下拉yii2复选框列表

时间:2018-05-09 16:18:29

标签: php mysql yii2

我的yii2论坛中有一个复选框列表。

就是这样。

<?php
         $list = ArrayHelper::map(Publisher::find()->all(),'user_id','name');
         echo $form->field($model, 'publisher_name')->widget(Select2::classname(),[
           'data' => $list,
            'options' => [
              'multiple' => true,
              'placeholder' => 'Choose publishers'
            ]
         ]);
        ?>

它从数据库中获取值。此外,我已经使用每个来填充控制器中的模型。现在我想用下拉列表填充这个复选框列表。

我的下降情况如下。

<?= $form->field($model, 'country')->dropDownList(Countries::getCountries(),
                    ['id' => 'country_id', 'prompt' => 'Select  countries'])
                ?>

<?= $form->field($model, 'state')->widget(DepDrop::classname(), [
                        //'data' => Regions::getRegions($model->country),
                        'options' => ['id' => 'region_id', 'prompt' => 'Choose a country first'],
                        'pluginOptions' => [
                            'depends' => ['country_id'],
                            'placeholder' => 'Select a state',
                            'url' => Url::to(['/regions/regions'])
                        ]
                    ]) ?>

<?= $form->field($model, 'city')->widget(DepDrop::classname(), [
                        //'data' => Cities::getCities($model->country),
                        'options' => ['id' => 'city_id', 'prompt' => 'Select a state'],
                        'pluginOptions' => [
                            'depends' => ['country_id','region_id'],
                            'placeholder' => 'Select',
                            'url' => Url::to(['/cities/cities'])
                        ]
                    ]) ?>

我还会使用更多的下拉菜单我想知道我可以用数组填充复选框列表的方法是什么?有没有办法做到这一点?

0 个答案:

没有答案