yii-cms / yii2-select2
此包的最新版本(v0.5)没有提供许可信息。
Yii2框架的Select2小部件。
v0.5
2020-01-28 08:23 UTC
Requires
- bower-asset/select2: 4.0.12
- yiisoft/yii2: >=2.0
This package is auto-updated.
Last update: 2024-08-28 17:47:48 UTC
README
https://github.com/select2/select2
<?= $form->field($model, 'user_id')->widget(Select2::className(), [ 'items' => ArrayHelper::map(User::find()->all(), 'id', function($model) { return $model->username . " <{$model->email}>"; }), 'clientOptions' => [ 'placeholder' => 'User', 'allowClear' => true, ], 'clientEvents' => [ 'change'=>'function (e) { console.log("Select2 change."); }', ], ]) ?>
<?= Select2::widget([ 'name' => 'InputName', 'items' => ArrayHelper::map(User::find()->all(), 'id', function($model) { return $model->fio . " <{$model->email}>"; }), 'clientOptions' => [ 'placeholder' => 'User', 'allowClear' => true, ] ]) ?>