placement.html 834 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <section>
  2. <h2>
  3. Can I change how the dropdown is placed?
  4. </h2>
  5. <h3 id="dropdown-attachContainer">
  6. Can the dropdown be placed directly after the selection container?
  7. </h3>
  8. {% include options/not-written.html %}
  9. <h3 id="dropdownParent">
  10. Can I pick an element for the dropdown to be appended to?
  11. </h3>
  12. {% highlight js linenos %}
  13. $('select').select2({
  14. dropdownParent: $('#my_amazing_modal')
  15. });
  16. {% endhighlight %}
  17. {% include options/not-written.html %}
  18. <h3>
  19. I&apos;m using a Bootstrap modal and I can&apos;t use the search box
  20. </h3>
  21. <p>
  22. Use the <code>dropdownParent</code> option, setting it to the modal.
  23. </p>
  24. {% include options/not-written.html %}
  25. <h3>
  26. I&apos;m using jQuery UI and I can&apos;t use the search box
  27. </h3>
  28. {% include options/not-written.html %}
  29. </section>