-
Notifications
You must be signed in to change notification settings - Fork 377
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
Search input closes immediately after focus #1282
Comments
After some more tinkering, I managed to relate it to the
|
Alright. Narrowed it down completely. If you apply the CSS styling My guess is that chrome somehow triggers a click element on the document, and incorrectly assumes that the click is outside the select element. |
@pjcarly do you have any idea of what the fix would be? I also fail to see why this would have changed in 3.0. The logic is mostly a 1:1 translation to new patterns, but the same events are being handled. |
I have no idea, only thing I can say is that I upgraded from v2.2.2, and there it is working with |
@pjcarly I've exactly the same issue after upgrading to |
I just removed it in my css stylesheet |
Same issue here: This also happens in Firefox (recent version) |
same issue for me... some change how edit: just noticed this is in |
Any update on this issue? |
@cibernox There are a couple of PRs linked to this issue. Any update on this would be very much helpful for our upgrade. Thanks. |
@cibernox Any update on this? |
Can confirm what @patricklx said: setting the eventType to |
FWIW, setting eventType to "click" did not work for me and I am seeing this issue regardless of the renderInPlace setting. The only solution I was able to find was moving it out of the table row it was in. |
After upgrading to version version 3.0.4, I noticed a behaviour change in the application that I cant immediately figure out.
I have a component like this:
On focus of the Component, I want to display a list of recently viewed records, which I could accomplish with
@searchMessageComponent
(this does seem to be missing from the documentation, but is still in the codebase)The issue i'm seeing now, is that:
element.actions.open();
) it works as it should.I narrowed down the code that closes the addon to here:
https://github.com/cibernox/ember-basic-dropdown/blob/b60127457821069cf288a7008c6ec2f787a69497/addon/components/basic-dropdown-content.js#L125
The text was updated successfully, but these errors were encountered: