n2ref/coreui-form-field-select2

CoreUI Form field select2

1.0.3 2024-06-22 12:55 UTC

This package is auto-updated.

Last update: 2025-03-22 14:29:11 UTC


README

Online documentation

js repository

Install

composer install n2ref/coreui-form-field-select2-php

Select2 options

select2.org

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": [",", " "]
          }
      }
      
    ]
}