On Thu, 2009-07-30 at 13:56 -0500, Matt Zagrabelny wrote: > On Wed, 2009-07-29 at 16:26 -0500, Matt Zagrabelny wrote: > > > Any ideas where to troubleshoot this? > > It looks like there is some style clashing between the request tracker > stylesheets and datepicker styling.
>From the following post I found that I could adjust the z-index of the datepicker div. http://osdir.com/ml/jquery-ui/2009-04/msg00367.html but the relative positioning in line 16 didn't work. 14 $('#pnteam_service_request__preferred_date').datepicker({ 15 beforeShow: function (i, e) { 16 var z = jQuery(i).closest(".ui-dialog").css("z-index") + 4; 17 e.dpDiv.css('z-index', z); 18 } 19 }); So I changed 17 to use absolute z-index positioning: e.dpDiv.css('z-index', '20'); and commented out line 16. -- Matt Zagrabelny - [email protected] - (218) 726 8844 University of Minnesota Duluth Information Technology Systems & Services PGP key 1024D/84E22DA2 2005-11-07 Fingerprint: 78F9 18B3 EF58 56F5 FC85 C5CA 53E7 887F 84E2 2DA2 He is not a fool who gives up what he cannot keep to gain what he cannot lose. -Jim Elliot --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "jQuery UI" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en -~----------~----~----~----~------~----~------~--~---
