多表关联的下拉列表
链接地址 https://github.com/kartik-v/yii2-widget-select2
修改_form.php文件
#code ...
use app\models \types;
use yii\ helpers\ArrayHelper;
#code ...
<?php $form = ActiveForm:: begin(); ?>
<?= $form-> field($model , 'member_type')-> widget(Select2 ::classname(), [
'data' =>ArrayHelper:: map(types ::find() ->all(), 'type_id','type_name' ),
'language' => 'en',
'options' => ['placeholder' => 'Select a type ...'],
'pluginOptions' => [
'allowClear' => true
],
]);
?>
#code ...
<?php ActiveForm::end (); ?>
#code ...
来自于datou:https://github.com/datou-leo/ci