sricc / tag-it

A jQuery UI plugin to handle multi-tag fields as well as tag suggestions/autocomplete.

Home Page:http://aehlke.github.com/tag-it/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tag-it: a jQuery UI plugin

Tag-it was originally inspired by the "tag suggestion" form field in ZenDesk.com. Now it is a full jQuery UI widget, supporting various configurations and themes.

Demo

Screenshot

Check the examples.html for several demos.

Usage

First, load jQuery (v1.4 or greater), jQuery UI (v1.8 or greater), and the plugin:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.12/jquery-ui.min.js" type="text/javascript" charset="utf-8"></script>
<script src="js/tag-it.js" type="text/javascript" charset="utf-8"></script>

If you're using a custom jQuery UI build, it must contain the Core, Widget, Position, and Autocomplete components. The Effects Core with "Blind" Effect components are optional, but used if available.

The plugin requires a jQuery UI theme to be present, as well as its own included base CSS file (jquery.tagit.css). Here we use the Flick theme as an example:

<link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1/themes/flick/jquery-ui.css">
<link href="css/jquery.tagit.css" rel="stylesheet" type="text/css">

Now, let's attach it to an existing <ul> box:

<script type="text/javascript">
    $(document).ready(function() {
        $("#mytags").tagit();
    });
</script>

<ul id="mytags">
    <!-- Existing list items will be pre-added to the tags -->
    <li>Tag1</li>
    <li>Tag2</li>
</ul>

This will turn the list into a tag-it list:

<ul id="mytags" class="tagit ui-widget ui-widget-content ui-corner-all">
    <!-- Existing list items will be pre-added to the tags. -->
    <li class="tagit-choice ui-widget-content ui-state-default ui-corner-all">
        <span class="tagit-label">Tag1</span>
        <a class="close"><span class="ui-icon ui-icon-close"></span></a>
        <input type="hidden" style="display:none;" value="Tag1" name="item[tags][]">
    </li>
    <li class="tagit-choice ui-widget-content ui-state-default ui-corner-all">
        <span class="tagit-label">Tag2</span>
        <a class="close"><span class="ui-icon ui-icon-close"></span></a>
        <input type="hidden" style="display:none;" value="Tag2" name="item[tags][]">
    </li>
    <li class="tagit-new">
        <input type="text" class="ui-widget-content ui-autocomplete-input" autocomplete="off" role="textbox" aria-autocomplete="list" aria-haspopup="true">
    </li>
</ul>

There are several other possible configurations and ways to instantiate the widget, including one that uses a single comma-delimited input field rather than one per tag, so see the Options documentation below as well as the examples page which demonstrates most of them.

Theming

Tag-it is as easily themeable as any jQuery UI widget, using your own theme made with Themeroller, or one of the jQuery UI premade themes. The old ZenDesk-like theme is included as an optional CSS file (tagit.ui-zendesk.css).

Options

Tag-it accepts several options to customize its behaviour:

fieldName (String)

Each tag's hidden input field will have this name. If you're using PHP, you may want to use something like itemName[fieldName][] for this option's value.

$("#mytags").tagit({
    fieldName: "skills"
});

Defaults to tags.

availableTags (Array)

Used as source for the autocompletion.

$("#mytags").tagit({
    availableTags: ["c++", "java", "php", "javascript", "ruby", "python", "c"]
});

Defaults to an empty array [].

tagSource (function)

Can be overwritten in order to use custom autocompletion sources like Ajax requests. The default function filters the strings in availableTags and subtracts the already assigned tags.

removeConfirmation (boolean)

When removeConfirmation is enabled the user has to press the backspace key twice to remove the last tag. After the first keypress the last tag receives a remove css class which can be used to visually highlight the tag.

Defaults to false.

caseSensitive (boolean)

whether the duplication check should do a case sensitive check or not.

Defaults to true.

allowDuplicates (boolean)

Allows duplicate tags to be created. One implication of this is that removeTagByName will remove all tags which match the given name.

Defaults to false.

allowSpaces (boolean)

When allowSpaces is enabled the user is not required to wrap multi-word tags in quotation marks. For example, the user can enter John Smith instead of "John Smith".

Defaults to false.

singleField (boolean)

When enabled, will use a single hidden field for the form, rather than one per tag. It will delimit tags in the field with singleFieldDelimiter.

Defaults to false, unless Tag-it was created on an input element, in which case singleField will be overridden as true.

singleFieldDelimiter (String)

Defaults to ","

singleFieldNode (DomNode)

Set this to an input DOM node to use an existing form field. Any text in it will be erased on init. But it will be populated with the text of tags as they are created, delimited by singleFieldDelimiter. If this is not set, we create an input node for it, with the name given in fieldName.

Defaults to null, unless Tag-it was created on an input element, in which case singleFieldNode will be overridden with that element.

tabIndex (integer)

Optionally set a tabindex attribute on the input that gets created for tag-it user input.

Defaults to null

placeholderText (String)

Optionally set a placeholder attribute on the input that gets created for tag-it user input.

Defaults to null

Events

onTagAdded (function, Callback)

Can be used to add custom behaviour before the Tag is added to the DOM. The function receives an empty event, and the tag as parameters.

$("#mytags").tagit({
    onTagAdded: function(event, tag) {
        // do something special
    }
});

onTagRemoved (function, Callback)

Can be used to add custom behaviour before the Tag is removed from the DOM. The function receives an empty event, and the tag as parameters.

$("#mytags").tagit({
    onTagRemoved: function(event, tag) {
        // do something special
    }
});

onTagClicked (function, Callback)

Can be used to add custom behaviour when the Tag is clicked from the DOM. The function receives the click event and the tag as parameters.

$("#mytags").tagit({
    onTagClicked: function(event, tag) {
        // do something special
    }
});

Methods

assignedTags()

Returns an array of the text values of all the tags currently in the widget.

$("#mytags").tagit("assignedTags");

createTag(tagName, additionalClass)

Adds new tag to the list. The additionalClass parameter is an optional way to add classes to the tag element.

$("#mytags").tagit("createTag", "brand-new-tag");

removeTagByName(tagName, animate)

Finds the tag with the value tagName and removes it. If no such tag is found, it'll throw an exception.

$("#mytags").tagit("removeTagByName", "my-tag");

removeAll()

Clears the widget of all tags -- removes each tag it contains, so the onTagRemoved event callback (if set in the options) will be called for each.

$("#mytags").tagit("removeAll");

Properties

tagInput

The <input> field which is used for entering new tags. It's a jQuery object, so you may use it to add a class or anything to it, e.g.:

$("#mytags").tagit("tagInput").addClass("fancy");

Authors

License

tag-it is released under the MIT license.

About

A jQuery UI plugin to handle multi-tag fields as well as tag suggestions/autocomplete.

http://aehlke.github.com/tag-it/

License:MIT License


Languages

Language:JavaScript 96.6%Language:Shell 3.4%