多表关联的下拉列表

安装yii2-widget-select2插件

链接地址 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

 

posted @ 2015-06-09 11:22  开源  阅读(137)  评论(0编辑  收藏  举报