You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to use Calendar in MSIE 11, with the theme from @dojo/themes. Thing is, MSIE 11 does not support appearance property, so the current "trick" used in the theme that works on all other browsers won't work there.
And if I set radio button to disabled via CSS, it never gets onmouseup event, but does get onchange event due to clicking on the label, which is currently being used. That results in Year/Month dropdown never being closed, and calendar being rendered buggy.
I've tried to move the function call from onmouseup event into onchange handler, and it seems to work here. Not sure why is onmouseup being used, but I guess there's a good reason.
Please provide a solution that will also work on IE11 with hidden radio button as in @dojo/themes (with something other than css:appearance property).
The text was updated successfully, but these errors were encountered:
Can't reproduce on IE11 after adding opacity: 0 to the radio inputs. It cannot close on the onChange event, since that would result in the menu being closed every time a keyboard user arrowed to a new month or year.
There are two other issues with the Calendar, which might be obfuscating the issue:
Bug
Package Version: RC1
Trying to use Calendar in MSIE 11, with the theme from @dojo/themes. Thing is, MSIE 11 does not support appearance property, so the current "trick" used in the theme that works on all other browsers won't work there.
And if I set radio button to disabled via CSS, it never gets onmouseup event, but does get onchange event due to clicking on the label, which is currently being used. That results in Year/Month dropdown never being closed, and calendar being rendered buggy.
I've tried to move the function call from onmouseup event into onchange handler, and it seems to work here. Not sure why is onmouseup being used, but I guess there's a good reason.
Please provide a solution that will also work on IE11 with hidden radio button as in @dojo/themes (with something other than css:appearance property).
The text was updated successfully, but these errors were encountered: