Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Focus element when setting #280

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

pythonandchips
Copy link

@pythonandchips pythonandchips commented Nov 14, 2024

The JS for filling in a field does not focus the element before filling it in, only triggers the focus event. This causes failures when checking the document.activeElement as the input will not be focused.

This fixes the issue by calling focus on the node before triggering the event.

dgholz and others added 3 commits October 29, 2024 11:25
Currently the javascript used to set a field value will trigger
a "focus" event prior to updating a field however this does not
set the input as focused so any use of `document.activeElement`
will return the body element.

To fix this a call to `node.focus()` has been added before the
focus event to ensure `document.activeElement` will respond
correctly.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants