vote up 1 vote down star
1

Does anyone know of a way to show a jQuery calendar in a jQuery dialog? The calendar seems show behind the popup dialog. I tried adjusting the z-index of the outmost calendar div, but it still didn't work. The z-index of the overlay and the dialog is 1001 and 1002 respectively.

 $('#ui-datepicker-div').css('z-index', 1005);
flag

73% accept rate

1 Answer

vote up 1 vote down check

Allright, I figured it out.

 beforeShow: function(){
    $('#ui-datepicker-div').css('z-index', 2005);
 }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.