jQuery UIのdialogとdatepickerを一緒に使う | 東京都世田谷区 ホームページ制作 [k]id

jQuery UIのdialogとdatepickerを一緒に使う

Category Ajax,JavaScript Update 2010.03.30

twitterfacebookgoogle+はてなブックマークPocketであとで読むfeedlyで購読

jQuery UIdialogdatepickerを併用すると何故かdatepickerが背面にまわってしまう。

jui

そんな場合の対処方法。
development-bundle/themes/ui-lightness/jquery.ui.datepicker.cssの

.ui-datepicker { width: 17em; padding: .2em .2em 0;}
を
.ui-datepicker { width: 17em; padding: .2em .2em 0; z-index:2000;}

な具合にz-indexを指定する事で回避ができるみたいです。

ページトップへ