Add bower_components as it contains the resources used by github pages.
This commit is contained in:
17
bower_components/select2/docs/_includes/options/selections/clearing-selections.html
vendored
Normal file
17
bower_components/select2/docs/_includes/options/selections/clearing-selections.html
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
<section>
|
||||
<h2 id="allowClear">
|
||||
Can I allow users to clear their selections?
|
||||
</h2>
|
||||
|
||||
<h3>
|
||||
The "x" icon is not clearing the selection
|
||||
</h3>
|
||||
|
||||
{% include options/not-written.html %}
|
||||
|
||||
<h3>
|
||||
Can users remove all of their selections in a multiple select at once?
|
||||
</h3>
|
||||
|
||||
{% include options/not-written.html %}
|
||||
</section>
|
||||
17
bower_components/select2/docs/_includes/options/selections/multiple.html
vendored
Normal file
17
bower_components/select2/docs/_includes/options/selections/multiple.html
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
<section>
|
||||
<h2 id="multiple">
|
||||
Can I allow users to make multiple selections?
|
||||
</h2>
|
||||
|
||||
<p>
|
||||
Yes, Select2 supports making multiple selections through the use of the <code>multiple</code> option that can be passed in when initializing Select2.
|
||||
</p>
|
||||
|
||||
<h3>
|
||||
Can the <code>multiple</code> attribute be used on my <code><select></code> element?
|
||||
</h3>
|
||||
|
||||
<p>
|
||||
Yes, Select2 will automatically map the value of the <code>multiple</code> attribute to the <code>multiple</code> option during initialization.
|
||||
</p>
|
||||
</section>
|
||||
53
bower_components/select2/docs/_includes/options/selections/placeholder.html
vendored
Normal file
53
bower_components/select2/docs/_includes/options/selections/placeholder.html
vendored
Normal file
@@ -0,0 +1,53 @@
|
||||
<section>
|
||||
<h2 id="placeholder">
|
||||
How can I have Select2 display a placeholder?
|
||||
</h2>
|
||||
|
||||
<p>
|
||||
Select2 supports displaying a placeholder by default using the <code>placeholder</code> option. This can be either a data object matching the placeholder option, or a string to display as the placeholder if you are using a blank placeholder option.
|
||||
</p>
|
||||
|
||||
<h3>
|
||||
My first option is being displayed instead of my placeholder
|
||||
</h3>
|
||||
|
||||
<p>
|
||||
This usually means that you do not have a blank <code><option></option></code> as the first option in your <code><select></code>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
Note that this does not apply to multiple selects, as the browser does not select the first option by default when multiple selections can be made.
|
||||
</p>
|
||||
|
||||
<h3>
|
||||
I am using AJAX, can I still show a placeholder?
|
||||
</h3>
|
||||
|
||||
<p>
|
||||
Yes, Select2 supports placeholders for all configurations. You will still need to add in the placeholder option if you are using a single select.
|
||||
</p>
|
||||
|
||||
<h3>
|
||||
Can I use an option without a blank value as my placeholder?
|
||||
</h3>
|
||||
|
||||
<p>
|
||||
The <code>placeholder</code> option allows you to pass in a data object instead of just a string if you need more flexibility. The <code>id</code> of the data object should match the <code>value</code> of the placeholder option.
|
||||
</p>
|
||||
|
||||
<h3>
|
||||
Can I change how the placeholder looks?
|
||||
</h3>
|
||||
|
||||
<p>
|
||||
The placeholder option should go through the standard templating methods, including <code>templateSelection</code>, so you can change how it is displayed.
|
||||
</p>
|
||||
|
||||
<h3>
|
||||
My placeholders aren't being displayed in Internet Explorer
|
||||
</h3>
|
||||
|
||||
<p>
|
||||
Select2 uses the native <code>placeholder</code> attribute on input boxes for the multiple select, and that attribute is not supported in older versions of Internet Explorer. You need to include Placeholders.js on your page, or use the full build, in order to add <code>placeholder</code> attribute support to input boxes.
|
||||
</p>
|
||||
</section>
|
||||
23
bower_components/select2/docs/_includes/options/selections/templating.html
vendored
Normal file
23
bower_components/select2/docs/_includes/options/selections/templating.html
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<section>
|
||||
<h2 id="templateSelection">
|
||||
How can I customize the way selections are displayed?
|
||||
</h2>
|
||||
|
||||
<h3>
|
||||
Nothing is being displayed when I select an option
|
||||
</h3>
|
||||
|
||||
{% include options/not-written.html %}
|
||||
|
||||
<h3>
|
||||
I am using HTML in my selection template but it isn't displaying it
|
||||
</h3>
|
||||
|
||||
{% include options/not-written.html %}
|
||||
|
||||
<h3>
|
||||
How can I access the container where the selection is displayed?
|
||||
</h3>
|
||||
|
||||
{% include options/not-written.html %}
|
||||
</section>
|
||||
Reference in New Issue
Block a user