LoginSignup
0
1

More than 3 years have passed since last update.

jQueryUIのDatepickerをBootstrapのmodal上に表示する

Last updated at Posted at 2020-08-20

こちらの記事の改良版です。

BootstrapのモーダルでjQueryUIのDatepickerのz-index問題を解消する小技 - Qiita

環境

  • jQuery UI 1.12

コード

$.datepicker.setDefaults({
  // options ...
  beforeShow: function() {
    if ($(this).parents('.modal').length) {
      $(this).css('z-index', String(parseInt($(this).parents('.modal').css('z-index') | 0, 10) + 1))
    }
  }
});
0
1
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
0
1