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
When I open an HTMLDialog as a modal, users are unable to interact with the HTML date picker (<input type="date" />). It works as expected when using dialog.show, but dialog.show_modal does not. The user can still type the date in to the input by hand; it's the visual calendar that cannot be clicked.
Open an HTML file containing a <input type="date" /> in an HTMLDialog opened with dialog.show
Open the same HTML file in an HTMLDialog opened with dialog.show_modal
The first option is to demonstrate that the date picker can be interacted with when the dialog is opened with dialog.show, and the second option is to demonstrate the issue.
Expected behavior is that the user should be able to interact w/ the HTML date picker when the HTMLDialog is opened as a modal.
The text was updated successfully, but these errors were encountered:
When I open an HTMLDialog as a modal, users are unable to interact with the HTML date picker (
<input type="date" />
). It works as expected when usingdialog.show
, butdialog.show_modal
does not. The user can still type the date in to the input by hand; it's the visual calendar that cannot be clicked.Reproduction of the issue: https://github.com/sasmithjr/su-modal-input-date
The repro is an extension with two menu items:
<input type="date" />
in an HTMLDialog opened withdialog.show
dialog.show_modal
The first option is to demonstrate that the date picker can be interacted with when the dialog is opened with
dialog.show
, and the second option is to demonstrate the issue.Expected behavior is that the user should be able to interact w/ the HTML date picker when the HTMLDialog is opened as a modal.
The text was updated successfully, but these errors were encountered: