Merge branch 'patch-1' of https://github.com/marcaparent/select2
This commit is contained in:
commit
b0e5197e00
1 changed files with 24 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
||||||
<h1 id="tags">Tagging support</h1>
|
<h1 id="tags">Tagging support</h1>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
Select2 can be used to quickly set up fields used for tagging.
|
Select2 can be used to quickly set up fields used for tagging.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
<div class="s2-example">
|
<div class="s2-example">
|
||||||
<p>
|
<p>
|
||||||
<select class="js-example-tags form-control" multiple="multiple">
|
<select class="js-example-tags-multiple form-control" multiple="multiple">
|
||||||
<option selected="selected">orange</option>
|
<option selected="selected">orange</option>
|
||||||
<option>white</option>
|
<option>white</option>
|
||||||
<option selected="selected">purple</option>
|
<option selected="selected">purple</option>
|
||||||
|
@ -21,9 +21,31 @@
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{% highlight js linenos %}
|
||||||
|
$(".js-example-tags-multiple").select2({
|
||||||
|
tags: true
|
||||||
|
})
|
||||||
|
{% endhighlight %}
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Tagging can also be used on a single select element. Simply remove the
|
||||||
|
<code>multiple="multiple"</code> attribute from your HTML markup.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<div class="s2-example">
|
||||||
|
<p>
|
||||||
|
<select class="js-example-tags form-control">
|
||||||
|
<option selected="selected">orange</option>
|
||||||
|
<option>white</option>
|
||||||
|
<option>purple</option>
|
||||||
|
</select>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
{% highlight js linenos %}
|
{% highlight js linenos %}
|
||||||
$(".js-example-tags").select2({
|
$(".js-example-tags").select2({
|
||||||
tags: true
|
tags: true
|
||||||
})
|
})
|
||||||
{% endhighlight %}
|
{% endhighlight %}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
Loading…
Add table
Reference in a new issue