ws-cv-ua/yii2-tagsinput

Yii2 jQuery Tags Input

Installs: 24

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

Type:yii2-extension

1.2.0 2019-10-15 14:06 UTC

This package is auto-updated.

Last update: 2024-04-16 00:39:43 UTC


README

alt text

Yii2 jQuery Tags Input

Installation

The preferred way to install this extension is through composer.

Either run

php composer.phar require --prefer-dist ws-cv-ua/yii2-tagsinput "*"

or add

"ws-cv-ua/yii2-tagsinput": "*"

to the require section of your composer.json file.

Usage

Once the extension is installed, simply use it in your code by :

<?= \wscvua\yii2tagsinput\AutoloadExample::widget(); ?>

More configuration for plugin: Responsive Tags Input With Autocomplete - jQuery tagsInput
Demos

Example with autocompete

<?= $form->field($model, 'tags')->widget(\wscvua\yiitagsinput\TagsWidget::className(), [
       'jsOptions' => [
           'autocomplete' => [
               'source' => [
                   'tagtest1',
                   'tagtest2',
                ]
           ]
        ]
]); ?>