selections.html 502 B

1234567891011121314151617181920212223242526272829
  1. <section>
  2. <h2>
  3. Can I change how selecting results works?
  4. </h2>
  5. <h3>
  6. Can I select the highlighted result when the dropdown is closed?
  7. </h3>
  8. <pre class="prettyprint">
  9. $('select').select2({
  10. selectOnClose: true
  11. });
  12. </pre>
  13. {% include options/not-written.html %}
  14. <h3>
  15. Can I prevent the dropdown from closing when a result is selected?
  16. </h3>
  17. <pre class="prettyprint">
  18. $('select').select2({
  19. closeOnSelect: false
  20. });
  21. </pre>
  22. {% include options/not-written.html %}
  23. </section>