We have just updated to JQuery 1.5.2.min and JQuery-ui-1.8.11.min and are using the latest datepicker.js files as well (I say files because we are using some of the localized versions of the datepicker also).

Before we updated we used the following code to initialize and use the datepicker and set the locale

$.datepicker.setDefaults($.datepicker.regional['']);

$('.datepicker').keypress(function()
{
    $(this).datepicker('hide');
});

$('.datepicker').datepicker();
$('.datepicker').datepicker('option', $.datepicker.regional[widgetCulture]);
$('.datepicker').datepicker('option', 'showAnim', '');
$('.datepicker').datepicker('setDate', new Date());

Since the update, when you scroll to the bottom of the screen where the datepicker is used, you can see it below all the controls. Its just floating there! Once you click on a field that the datepicker is associated with, it appears where it should and then does not appear at the bottom of the screen again until you refresh the page. When I comment out everything but the .datepicker() line all I see is a grey bar instead of the entire calendar which is a tad better, I suppose (not really), but still needs to be fixed. Any other line of the above code makes the entire calendar appear. This is severely frustrating!

Can someone please shed some light on this?

link|improve this question

68% accept rate
2  
did you update your jquery ui css to? – Patricia Apr 20 '11 at 20:18
I am seeing this behavior too with both 1.8.10 and 1.8.13 (I have confirmed in both cases I am using matching JS/CSS files. Bob P.S. I think there are some issues at jQuery UI right now as all sorts of things seem to be screwing up. The UI Lightness theme is currently the same as the smoothness them in both the custom downloads and in the theme gallery (if you double click on the correct-looking UI Lightness preview on the left, Smoothness appears on the right). Also many of the other themes are showing blank 'Framework Icons' below. Did someone break jQuery UI? :-D – Bob Jun 3 '11 at 16:16
feedback

1 Answer

up vote 1 down vote accepted

I've had this same bug for a while and just got around to looking at it tonight. I'm not sure why this bug occurs, but the following is what I've done to eliminate the visual artifact on the screen. Right after you create your datepicker(s), execute the following:

$('#ui-datepicker-div').css('display','none');

Caveat: When I look at the dom generated by Safari and step through the code that creates the datepicker, the code above appears to do nothing to the dom, but it does hide the visual affect on the screen.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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