yii-cms/yii2-select2

此包的最新版本(v0.5)没有提供许可信息。

Yii2框架的Select2小部件。

安装次数: 18,426

依赖项: 0

建议者: 0

安全性: 0

星星: 5

关注者: 2

分叉: 3

公开问题: 0

类型:yii2-extension

v0.5 2020-01-28 08:23 UTC

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,
        ]
    ]) ?>