Event popup on Firefox - form fields not clickable
See original GitHub issueHey,
I’ve noticed on Firefox form fields like Subject and Location are not focusable.
When you click with mouse you can’t enter anything.
When you focus the field with Tab you will be able to enter data.
With mouse click not.
I see mouseover is working or
It works fine on Edge and Chrome but not Firefox.
Something is preventing the click there.
Can’t find the solution.
Only the text fields are not working (select, checkbox and datepicker are working fine, but the datepicker popup is working fine but you can’t enter dates in the text fields).
You can test it on the official demo: https://nhnent.github.io/tui.calendar/latest/tutorial-example01-basic.html
Issue Analytics
- State:
- Created 5 years ago
- Reactions:4
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Pop-up blocker settings, exceptions and troubleshooting
Pop-up blocker settings · In the Menu bar at the top of the screen, click Firefox and select Preferences.Click the menu button Fx89menuButton...
Read more >Autofocus not working in modal form in Firefox - Stack Overflow
I have a search modal that pops up once you click an icon, I currently have autofocus="autofocus ...
Read more >Changing the Pop-up Blocker Settings in Chrome, Firefox, or ...
Changing the Pop-up Blocker Settings in Chrome, Firefox, or Internet Explorer. Chrome. 1. On your computer, open Chrome. 2. At the top right,...
Read more >Configuring your web browser to allow pop-up windows
Ensure the Block pop-up windows option is not checked. Unchecking this option will allow pop-ups. To block pop-ups once again, check the Block ......
Read more >Drag Drop from Popup not working on Mozilla Firefox and ...
No event gets triggered. <lightning-input type="file" name="file uploader" class="WUInputContainer" onchange={handleFileUpload} data-fieldname=' ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I confirmed that an issue occurred. I will try to solve it as much as possible. Thanks 😃
Somebody blocked this mouse event for Firefox in file tui-calendar.js … // EventTarget.target is not changed in mousemove event even if mouse is over the other element. // It’s different with other browsers(IE, Chrome, Safari) if (util.browser.firefox) { domevent.preventDefault(mouseDownEvent); } …
I removed this part of code from tui-calendar.js and then clicking in Firefox form field worked properly.