sunnnnn/yii2-widgets-select

select widget for yii2-admin or Yii2 frame

Installs: 10

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 2

Forks: 0

Type:yii2-widgets

1.0.1 2017-12-08 07:28 UTC

This package is auto-updated.

Last update: 2024-04-26 16:16:58 UTC


README

安装

composer require sunnnnn/yii2-widgets-select

使用

  • 在ActiveForm中
<?= $form->field($model, 'select')->widget(\sunnnnn\select\Select::className(), [
    '_items' => ['aaa', 'bbb', 'ccc'],
]); ?>
  • 不使用ActiveForm
\sunnnnn\select\Select::widget([
    'name' => 'select',
    '_items' => ['aaa', 'bbb', 'ccc'],
]);
  • 相关参数
<?= $form->field($model, 'select')->widget(\sunnnnn\select\Select::className(), [
    '_items' => ['aaa', 'bbb', 'ccc'],   //选项
    '_placeholder' => '占位符',
    '_multiple' => true,  //是否多选
    '_clear' => true, //是否允许清除当前选中项 ,默认false
    '_options' => [],  //原生配置
]); ?>