0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SB Admin 2 でjQueryのdatepickerを使うと表示位置がずれる場合

0
Posted at

SB Admin 2 でjQueryのdatepickerを使うと、カレンダーの表示位置がずれる。

ちょっと上にずれて表示される。

Firebugで確認すると、表示位置のtopがelement.styleで指定されていることがわかる。

element.styleで指定されているということは、javascriptで設定しているということなので、

miniの付かない bootstrap-datepicker.js を開いてみる。

すると 677行目に

top = offset.top - appendOffset.top;

という部分が見つかった。

上にずれるということは、少ないということなので、怪しい。

その行の下に

top = offset.top;

を追記すると、適切な位置に表示されるようになった。

SB Adminでは、他にもfooterが下に表示されてしまう現象もあったので、
何かあるのかもしれない。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?