I met the problem with datepicker in IE 9 (FF and Chrome work fine).

When the user selects some date, popup hides, but after that it opens again. How to fix this?

the code to bind input text with datepicker:

$("input[type='datetime']").each(function () {
        var minDate = getDateYymmdd($(this).data("val-rangedate-min"));
        var maxDate = getDateYymmdd($(this).data("val-rangedate-max"));
        var yearrange = $(this).attr("yearrange");

        $(this).datepicker(({
            dateFormat: "yy-mm-dd",
            yearRange: yearrange,
            showOn: "both",
            minDate: minDate,
            changeYear: true,
            changeMonth: true,
            maxDate: maxDate,
            buttonImage: '@Url.Content("~/Content/images/calendar.gif")',
            buttonImageOnly: true

        }));
link|improve this question
I have exactly the same problem ;/ – Luzik Aug 25 '11 at 9:05
feedback

1 Answer

Apparently, there has been a bug (Ticket here). I downloaded the latest release (1.8.16) and it seems that the problem has been fixed.

link|improve this answer
Great! They've fixed it. Thanks for the answer. – Artem Vertiy Aug 27 '11 at 16:31
+1! Had same problem :) – Goran Obradovic Oct 2 '11 at 22:58
feedback

Your Answer

 
or
required, but never shown

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