当前位置:首页 > CMS教程 > 其它CMS > 列表

yii2框架中使用下拉菜单的自动搜索yii-widget-select2实例分析

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-05 10:17:07 浏览: 评论:0 

这篇文章主要介绍了yii2框架中使用下拉菜单的自动搜索yii-widget-select2的方法,介绍了yii-widget-select2的下载,安装及具体使用技巧,需要的朋友可以参考下。

本文实例讲述了yii2框架中使用下拉菜单的自动搜索yii-widget-select2的方法,分享给大家供大家参考,具体如下:

github中源代码地址:https://github.com/kartik-v/yii2-widget-select2

利用composer.phar安装此插件:

php composer.phar require kartik-v/yii2-widget-select2 "*"

引用方法:

use kartik\select2\Select2;

源代码:

  1. <?= $form->field($model'companies_company_id')->widget(Select2::classname(), [ 
  2.   'data' => ArrayHelper::map(Companies::find()->all(),'company_id','company_name'), 
  3.   'language' => 'en'
  4.   'options' => ['placeholder' => 'Select a state ...'], 
  5.   'pluginOptions' => [ 
  6.     'allowClear' => true 
  7.   ], 
  8. ]); ?> 

相关内容的详细解释:http://demos.krajee.com/widget-details/select2

Tags: yii2框架 yii-widget-select2

分享到: