JQuery calendar display in jquery dialog popup

Does anyone know how to show jQuery calendar in jQuery dialog? The calendar appears behind a pop-up dialog box. I tried adjusting the z-index of the calendar div itself, but it still doesn't work. The overlay z-index and dialog are 1001 and 1002 respectively.

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

      

+2


source to share


1 answer


Ok, I figured it out.



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

      

+3


source







All Articles