n2ref/coreui-form-field-select2
最新稳定版本:1.0.3
Composer 安装命令:
composer require n2ref/coreui-form-field-select2
包简介
CoreUI Form field select2
关键字:
README 文档
README
Install
composer install n2ref/coreui-form-field-select2-php
Select2 options
Example usage
$form = new Form(); $form->setRecord([ 'field' => 'Reactive', ]); $options = [ 'Reactive', 'Solution', 'Conglomeration', 'Algoritm', 'Holistic', ]; $form->setFields([ (new Field\Select2('field', 'title')))->setWidth(300)->setOptions($options) ->setSelect2([ "placeholder" => 'Write your value', "tags" => true, "tokenSeparators" => [',', ' '] ]), ]); echo json_encode($form->toArray());
Output
{
"component": "coreui.form",
"record" : {
"field": "Reactive"
},
"fields" : [
{
"type": "select2",
"name": "field",
"label": "title",
"width": 300,
"options": [
"Reactive", "Solution", "Conglomeration", "Algoritm", "Holistic"
],
"select2": {
"placeholder": "Write your value",
"tags": true,
"tokenSeparators": [",", " "]
}
}
]
}
统计信息
- 总下载量: 6
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0-or-later
- 更新时间: 2024-06-22