fixed setDate

master
Trent Richardson 2010-11-29 08:45:54 -05:00
parent c0de1ae8e6
commit 539ef8daf4
1 changed files with 5 additions and 1 deletions

View File

@ -723,8 +723,12 @@ $.datepicker._setTimeDatepicker = function(target, date, withDate) {
//#######################################################################################
$.datepicker._base_setDateDatepicker = $.datepicker._setDateDatepicker;
$.datepicker._setDateDatepicker = function(target, date) {
var inst = this._getInst(target),
tp_date = new Date(date.getTime());
this._updateDatepicker(inst);
this._base_setDateDatepicker.apply(this, arguments);
this._setTimeDatepicker(target, date, true);
this._setTimeDatepicker(target, tp_date, true);
};
//#######################################################################################