#3267 closed bug (fixed)
Alternate field not updated when using "setDate"
Reported by: | 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);
}
},
Change History (2)
comment:1 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:2 Changed 14 years ago by
Milestone: | TBD → 1.6rc1 |
---|
Note: See
TracTickets for help on using
tickets.
Fixed.