2015-09-13 18:31:59 +03: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-02-14 21:33:33 +03:00
|
|
|
{% highlight js linenos %}
|
2016-01-15 03:29:48 +03:00
|
|
|
$('select').select2({
|
|
|
|
selectOnClose: true
|
|
|
|
});
|
2016-02-14 21:33:33 +03:00
|
|
|
{% endhighlight %}
|
2016-01-15 03:29:48 +03:00
|
|
|
|
2015-09-15 02:30:32 +03:00
|
|
|
{% include options/not-written.html %}
|
2015-09-13 18:31:59 +03:00
|
|
|
|
|
|
|
<h3>
|
|
|
|
Can I prevent the dropdown from closing when a result is selected?
|
|
|
|
</h3>
|
|
|
|
|
2016-02-14 21:33:33 +03:00
|
|
|
{% highlight js linenos %}
|
2016-01-15 03:29:48 +03:00
|
|
|
$('select').select2({
|
|
|
|
closeOnSelect: false
|
|
|
|
});
|
2016-02-14 21:33:33 +03:00
|
|
|
{% endhighlight %}
|
2016-01-15 03:29:48 +03:00
|
|
|
|
2015-09-15 02:30:32 +03:00
|
|
|
{% include options/not-written.html %}
|
2015-09-13 18:31:59 +03:00
|
|
|
</section>
|