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
{{ message }}
This repository was archived by the owner on Apr 12, 2024. It is now read-only.
Without ngAria, HTML dropdown menu items are clickable with ngClick. With ngAria, clicking on the menu items does nothing.
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://plnkr.co or similar (template: http://plnkr.co/edit/tpl:yBpEi4).
I expect ngAria to not conflict with ngClick events.
What is the motivation / use case for changing the behavior?
Enterprise application requires both ngAria and ngClick
Which versions of Angular, and which browser / OS are affected by this issue? Did this work in previous versions of Angular? Please also test with the latest stable and snapshot (https://code.angularjs.org/snapshot/) versions.
Angular 1.3.20
Angular 1.3.17
Google Chrome on Windows 7 64bit
Yes, without ngAria
I am stuck with using Angular 1.3 branch line
Other information (e.g. stacktraces, related issues, suggestions how to fix)
This is working as expected. The reason it breaks is that ngAria is adding the tabindex attribute on ngClick elements (which is by design, so that these elements can be navigated and clicked by keyboard). Your app's CSS is not designed to work correctly with tabindex on a drop-down item (which is bad design imo, but that's unrelated tot he issue); i.e. you can reproduce the problem even without ngAria, byt simply adding tabindex="0" on ngClick elements.
Here is what's going on:
The interesting part of the app has the folooing structure:
.button[tabindex]
.drop-down-menu
ul
li
.button[ng-click]
When you click on .button[tabindex], it gets focused and the following CSS rule gets activated, causing the drop-down menu to show up):
Without ngAria, .button[ng-click] can't gain focus (since it is a <div>), so the focus remains on .button[tabindex] and the aforementioned CSS rule remains activated, keeping the drop-down menu visible. The click event gets dispatched correctly and the handler is executed.
With ngAria (or manually adding tabindex), .button[ng-click] does gain focus upon click (because it now has tabindex on it). So the .button[tabindex] above loses focus and the CSS rule (which relied on account > .button having focus) eizes to aplply. This causes the drop-down menu to get hidden, which prevents the click event from dispatching on the clicked .button[ng-click] element.
Note: for support questions, please use one of these channels: https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md#question. This repository's issues are reserved for feature requests and bug reports.
Do you want to request a feature or report a bug?
bug
What is the current behavior?
If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://plnkr.co or similar (template: http://plnkr.co/edit/tpl:yBpEi4).
Live demo where ngClick doesn't get triggered: http://plnkr.co/edit/Shjqy89KGWlvQ0lirYiV?p=preview
What is the expected behavior?
What is the motivation / use case for changing the behavior?
Which versions of Angular, and which browser / OS are affected by this issue? Did this work in previous versions of Angular? Please also test with the latest stable and snapshot (https://code.angularjs.org/snapshot/) versions.
Other information (e.g. stacktraces, related issues, suggestions how to fix)
The text was updated successfully, but these errors were encountered: