Home  >  Article  >  Backend Development  >  yii2框架中使用下拉菜单的自动搜索yii-widget-select2实例分析_PHP

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

WBOY
WBOYOriginal
2016-05-28 11:49:23916browse

本文实例讲述了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;

源代码:

<&#63;= $form->field($model, 'companies_company_id')->widget(Select2::classname(), [
  'data' => ArrayHelper::map(Companies::find()->all(),'company_id','company_name'),
  'language' => 'en',
  'options' => ['placeholder' => 'Select a state ...'],
  'pluginOptions' => [
    'allowClear' => true
  ],
]); &#63;>

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

希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn