Jquery.ui.datepicker Monthly selection did not work in IE9

First of all, IE 9 browser.

Two scenarios

jquery.blockUI.js ui.datepicker.js 

When I display the datepicker on a regular page, everything works fine,

but when I try to display the datupixer on the popup page, the popup window of the month and year no longer works.

waiting for your reply!

+4
source share
1 answer

Do not use blockUI for this purpose. The blockUI plugin makes it block all input data on the screen, so it makes sense why you cannot "click" in the drop-down lists.

Instead, you should use dialog . For instance:

 $('#btnTest').click(function() { $('#divAddNew').dialog({ modal: true }); }); 
+1
source

Source: https://habr.com/ru/post/1440177/


All Articles