Download the PHP package wdmg/bootstrap-tagsinput-plugin without Composer

On this page you can find all versions of the php package wdmg/bootstrap-tagsinput-plugin. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package bootstrap-tagsinput-plugin

Bootstrap TagsInput

Tags input for Bootstrap 3

Installation

$ npm install bootstrap-tagsinput-plugin
$ bower install bootstrap-tagsinput-plugin
$ yarn add bootstrap-tagsinput-plugin
$ composer require bootstrap-tagsinput-plugin

Usage example

For example use the input-group:

<div class="form-group">
    <label class="control-label" for="tags">Tags:</label>
    <input id="tags" name="tags" class="form-control" placeholder="Type your tags here..." value="one, two, three" />
</div>

... and init from script:

<script type="text/javascript">
    $(document).ready(function () {
        var tags = $('input#tags').tagsinput({
            delimiter: ','
        });
    });
</script>

Options

Name Type Default Description
id string empty The widget ID if need.
delimiter string ',' Delimiter for split tags.
inputClass string '.tagsinput' Input class.
labelClass string '.label .label-info' Tag label class.
autocomplete string/boolean false Autocomplete URL.
format string "string" Input/output format for autocomplate.
minInput integer 2 Min input lenght for add tag.
maxTags integer 10 Max tags count.
templates array {inputWrapper, inputField, tagItem etc. } Templates array for widget.
onChange function onChange() The function that is called when input change.
onShow function onShow() The function that is called when widget is ready to be displayed.
onShown function onShown() The function that is called when widget is displayed.
onHide function onHide() The function that is called when widget to prepare for hiding.
onHidden function onHidden() The function that is called when widget is hidden.
onAddTag function onAddTag() The function is called when a new tag is added to the collection.
onRemoveTag function onRemoveTag() The function is called when the tag is removed from the collection.
onAutocompleteSuccess function onAutocompleteSuccess() The function is called when autocomplete successfully called an ajax request.
onAutocompleteError function onAutocompleteError() The function is called when autocomplete caused an ajax error.
onAutocompleteShow function onAutocompleteShow() The function that is called when autocomplete is ready to be displayed.
onAutocompleteShown function onAutocompleteShown() The function that is called when autocomplete is displayed.
onAutocompleteHide function onAutocompleteHide() The function that is called when autocomplete to prepare for hiding.
onAutocompleteHidden function onAutocompleteHidden() The function that is called when autocomplete is hidden.
debug boolean false Flag if need debug in console log.

Templates

Name Type Default value Description
inputWrapper string <div class="bootstrap-tagsinput" /> Template for widget wrapper.
inputField string <input type="text" autocomplete="false" /> The autocomplete field.
tagItem string <span class="tag" /> The tag template.
tagRemoveLink string <a href="#" class="remove" data-dismiss="tag" aria-hidden="true">[x]</a> Link for remove tag.
autocompleteList string <div class="autocomplete dropdown-menu" /> Autocomplete dropdown list.
autocompleteItem string <li><a class="item" href="#" /></li> Autocomplete dropdown item.

Status and version


All versions of bootstrap-tagsinput-plugin with dependencies

PHP Build Version
Package Version
No informations.
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package wdmg/bootstrap-tagsinput-plugin contains the following files

Loading the files please wait ....