1
0
mirror of synced 2024-11-23 13:36:01 +03:00
select2/docs/_includes/options/selections/templating.html

37 lines
929 B
HTML
Raw Normal View History

<section>
<h2 id="templateSelection">
How can I customize the way selections are displayed?
</h2>
2016-01-15 03:30:11 +03:00
<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>
Nothing is being displayed when I select an option
</h3>
2015-09-15 02:30:32 +03:00
{% include options/not-written.html %}
<h3>
I am using HTML in my selection template but it isn't displaying it
</h3>
2015-09-15 02:30:32 +03:00
{% include options/not-written.html %}
<h3>
How can I access the container where the selection is displayed?
</h3>
2015-09-15 02:30:32 +03:00
{% include options/not-written.html %}
</section>