LoginSignup
3
2

More than 3 years have passed since last update.

メモ:bootstrapモーダル上でselect2を動かす

Last updated at Posted at 2019-10-17

この記事は

  • メモ以外の何者でもないのでスルーしてください

やりたかったこと

  • select2っていう高機能プルダウン部品があって便利です
  • なぜかbootstrapのモーダル上にこのselect2を配置すると動かなかったので動かしたかったです

やり方

  • 下記のようなhtmlだとします
<div id="select-wrapper">
  <select id="select2">
    <option>....
  </select>
</div>
  • 下記のような感じでdropdownParentというオプションをつけると解決です

$('#select2').select2({
  dropdownParent: $("#select-wrapper"),
})

終わりに

  • なんとなくzIndex系の問題な気はするけど追ってない
3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2