Opened 9 years ago
Closed 9 years ago
#14251 closed bug (notabug)
jQuery UI Datepicker month and year combo not working in jQuery BlockUI (Popup)
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | undecided | Milestone: | None |
Component: | unfiled | Version: | 1.10.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
HTML Code <div class="popup">
Date Picker<input type="text" class="datepicker" />
</div>
jQuery Code
$(document).ready(function(e) {
$.blockUI({
message:$('.popup'), focusInput: false, onBlock:function(){}
});
$( ".datepicker" ).datepicker({
dateFormat: 'dd-mm-yy', changeYear: true, changeMonth: true, yearRange: 'c-10:c+3', showButtonPanel: false
});
});
You can check below jsFiddle: http://jsfiddle.net/4FhHK/204/
I also asked in StackOverflow: http://stackoverflow.com/questions/18186257/jquery-ui-datepicker-month-and-year-combo-not-working-in-jquery-blockui-popup
Change History (2)
comment:1 Changed 9 years ago by
comment:2 Changed 9 years ago by
Resolution: | → notabug |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Got solution for that: http://stackoverflow.com/questions/18186257/jquery-ui-datepicker-month-and-year-combo-not-working-in-jquery-blockui-popup
It's not a jQuery bug. jQuery BlockUI blocked click except popup container.