Search and Top Navigation
#3267 closed bug (fixed)
Opened August 29, 2008 07:31PM UTC
Closed September 07, 2008 07:55AM UTC
Last modified November 19, 2008 04:32AM UTC
Alternate field not updated when using "setDate"
Reported by: | magenest@gmail.com | Owned by: | grabanski |
---|---|---|---|
Priority: | major | Milestone: | 1.6rc1 |
Component: | ui.datepicker | Version: | 1.5.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
To fix this problem, add a call to _updateAlternate() inside _setDateDatepicker():
_setDateDatepicker: function(target, date, endDate) {
var inst = $.data(target, PROP_NAME);
if (inst) {
this._setDate(inst, date, endDate);
this._updateAlternate(inst);
}
},
Fixed.