2015-09-13 11:31:59 -04:00
|
|
|
<section>
|
|
|
|
<h2>
|
|
|
|
Can I change how selecting results works?
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<h3>
|
|
|
|
Can I select the highlighted result when the dropdown is closed?
|
|
|
|
</h3>
|
|
|
|
|
2016-01-14 19:29:48 -05:00
|
|
|
<pre class="prettyprint">
|
|
|
|
$('select').select2({
|
|
|
|
selectOnClose: true
|
|
|
|
});
|
|
|
|
</pre>
|
|
|
|
|
2015-09-14 19:30:32 -04:00
|
|
|
{% include options/not-written.html %}
|
2015-09-13 11:31:59 -04:00
|
|
|
|
|
|
|
<h3>
|
|
|
|
Can I prevent the dropdown from closing when a result is selected?
|
|
|
|
</h3>
|
|
|
|
|
2016-01-14 19:29:48 -05:00
|
|
|
<pre class="prettyprint">
|
|
|
|
$('select').select2({
|
|
|
|
closeOnSelect: false
|
|
|
|
});
|
|
|
|
</pre>
|
|
|
|
|
2015-09-14 19:30:32 -04:00
|
|
|
{% include options/not-written.html %}
|
2015-09-13 11:31:59 -04:00
|
|
|
</section>
|