1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Code samples and docs for selections

This commit is contained in:
Kevin Brown 2016-01-14 19:30:11 -05:00
parent ce2204cff0
commit 0840c3923f
3 changed files with 64 additions and 2 deletions

View File

@ -3,6 +3,23 @@
Can I allow users to clear their selections? Can I allow users to clear their selections?
</h2> </h2>
<p>
You can allow people to clear their current selections with the <code>allowClear</code> option when initializing Select2. Setting this option to <code>true</code> will enable an "x" icon that will reset the selection to the placeholder.
</p>
<pre class="prettyprint">
$('select').select2({
placeholder: 'This is my placeholder',
allowClear: true
});
</pre>
<h3>
Why is a placeholder required?
</h3>
{% include options/not-written.html %}
<h3> <h3>
The "x" icon is not clearing the selection The "x" icon is not clearing the selection
</h3> </h3>

View File

@ -7,6 +7,12 @@
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. 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> </p>
<pre class="prettyprint">
$('select').select2({
placeholder: 'Select an option'
});
</pre>
<h3> <h3>
My first option is being displayed instead of my placeholder My first option is being displayed instead of my placeholder
</h3> </h3>
@ -35,12 +41,37 @@
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. 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> </p>
<pre class="prettyprint">
$('select').select2({
placeholder: {
id: '-1', // the value of the option
text: 'Select an option'
}
});
</pre>
<h3> <h3>
Can I change how the placeholder looks? Can I change how the placeholder looks?
</h3> </h3>
<p> <p>
The placeholder option should go through the standard templating methods, including <code>templateSelection</code>, so you can change how it is displayed. When using Select2 <strong>when only a single selection can be made</strong>, the placeholder option will be passed through the standard templating methods, incluidng the <code>templateSelection</code> option, so you are able to change how it is displayed.
</p>
<pre class="prettyprint">
$('select').select2({
templateResult: function (data) {
if (data.id === '') { // adjust for custom placeholder values
return 'Custom styled placeholder text';
}
return data.text;
}
});
</pre>
<p>
<strong>When multiple selections are allowed</strong>, the placeholder will be displayed using the <code>placeholder</code> attribute on the search box. You can cusotmize the display of this placholder using CSS, as explained in the following Stack Overflow answer: <a href="http://stackoverflow.com/q/2610497/359284">Change an input's HTML5 placeholder color with CSS</a>
</p> </p>
<h3> <h3>
@ -48,6 +79,6 @@
</h3> </h3>
<p> <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. 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 <a href="https://github.com/jamesallardice/Placeholders.js">Placeholders.js</a> on your page, or use the full build, in order to add <code>placeholder</code> attribute support to input boxes.
</p> </p>
</section> </section>

View File

@ -3,6 +3,20 @@
How can I customize the way selections are displayed? How can I customize the way selections are displayed?
</h2> </h2>
<p>
When a selection is made by the user Select2 will display the text of the option by default, just like how it is displayed in a standard select box. You can override the display of the selection by setting the <code>templateSelection</code> option to a JavaScript function.
</p>
<pre class="prettyprint">
function template(data, container) {
return data.text;
}
$('select').select2({
templateSelection: template
});
</pre>
<h3> <h3>
Nothing is being displayed when I select an option Nothing is being displayed when I select an option
</h3> </h3>