If I do something similar when initializing DatePicker elements which was suggested by somebody on the internet:
$('.DatePicker').datepicker({
onChangeMonthYear: function(year, month, inst) {
var now = new Date(this.value);
if (now) {
var max = new Date(year, month, 0).getDate();
var day = now.getDate() > max ? max : now.getDate();
var newDate = new Date(year, month-1, day);
inst.input.datepicker('setDate', newDate);
}
}
});
(Of course I have attached class=DatePicker at the required input elements.)
then IE always crashes when changing date.
if I ommit onChangeMonthYear handler or just comment out the inst.input.datepicker ... line, the problem disappears (of course in this case the required funcionality also disappears).
So I did some more experiments and realized that the problem is at the first line:
var now = new Date(this.value);
Here we try to construct a Date variable from the input field value. It looks that IE does not construct when the format is localized (like at me hungarian), so the result will be NaN. It looks this is the real problem. Anyhow it was strange for me that Chrome and Firefox worked properly.
So I have changed my first line into:
var now = inst.input.datepicker('getDate');
And there is no crash anymore.
I have found another strange behaviour at the bottom line: a small rectangle was visible for the DatePicker. This caused some mistakes as well when mouse over. But I have found a solution also for this adding a small piece of css after jquery.ui.css in my main template:
#ui-datepicker-div
{
display: none;
}
So I am happy it works in IE6, Chrome, Firefox as I wanted.
Here is my final initialization code for datepicker:
$('.DatePicker').datepicker({
onChangeMonthYear: function(year, month, inst) {
var now = inst.input.datepicker('getDate');
if (now) {
var max = new Date(year, month, 0).getDate();
var day = now.getDate() > max ? max : now.getDate();
var newDate = new Date(year, month-1, day);
inst.input.datepicker('setDate', newDate);
}
}
});
and my datetimepicker as well:
$('.DateTimePicker').datetimepicker({
onChangeMonthYear: function(year, month, inst) {
var now = inst.input.datepicker('getDate');
if (now) {
var max = new Date(year, month, 0).getDate();
var day = now.getDate() > max ? max : now.getDate();
var newDate = new Date(year, month-1, day,
now.getHours(), now.getMinutes(), now.getSeconds());
inst.input.datepicker('setDate', newDate);
}
}
});
I am using jQuery 1.7.1 and jquery.ui.1.8.16
Miklos