Ticket #3267 (closed bug: fixed)
Alternate field not updated when using "setDate"
| Reported by: | magenest@… | Owned by: | grabanski |
|---|---|---|---|
| Priority: | major | Milestone: | 1.6rc1 |
| Component: | ui.datepicker | Version: | 1.5.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
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
Note: See
TracTickets for help on using
tickets.


Fixed.