Skip to content

Commit

Permalink
Datepicker: added check to account for multiple pickers on one page. …
Browse files Browse the repository at this point in the history
…Fixed #5818 – multiple DatePickers won't trigger close event(cherry picked from commit 82cf9e2)
  • Loading branch information
ryanolton authored and scottgonzalez committed Jan 20, 2012
1 parent 5953d19 commit 120ee58
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ui/jquery.ui.datepicker.js
Expand Up @@ -233,7 +233,10 @@ $.extend(Datepicker.prototype, {
inst.trigger.click(function() {
if ($.datepicker._datepickerShowing && $.datepicker._lastInput == input[0])
$.datepicker._hideDatepicker();
else
else if ($.datepicker._datepickerShowing && $.datepicker._lastInput != input[0]) {
$.datepicker._hideDatepicker();
$.datepicker._showDatepicker(input[0]);
} else
$.datepicker._showDatepicker(input[0]);
return false;
});
Expand Down

0 comments on commit 120ee58

Please sign in to comment.