select2 / select2-bootstrap-theme

A Select2 v4 Theme for Bootstrap 3
https://select2.github.io/select2-bootstrap-theme/
MIT License
871 stars 498 forks source link

Modal problem #80

Open twstd27 opened 6 years ago

twstd27 commented 6 years ago

When modal is larger than screen and you scroll down to see content all select2 stop working properly, you can't open the dropdown, it closes everytime you click on it.

sherman89 commented 5 years ago

I struggled with a similar issue, and the solution is to set the dropdownParent property to the body of the modal (NOT the root modal div as the documentation suggests).

$('#mySelect2').select2({ dropdownParent: $('#myModalContent') });