Skip to content

ws-cv-ua/yii2-tagsinput

Folders and files

NameName
Last commit message
Last commit date

Latest commit

4f9ae62 · Oct 15, 2019

History

6 Commits
Oct 14, 2019
Oct 14, 2019
Oct 15, 2019
Oct 14, 2019
Oct 14, 2019
Oct 14, 2019

Repository files navigation

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