Skip to content
Permalink
Browse files
Datepicker: added check to account for multiple pickers on one page. …
…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.
@@ -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;
});

0 comments on commit 120ee58

Please sign in to comment.