-
Notifications
You must be signed in to change notification settings - Fork 516
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
Another buttons click event fires before on-close #548
Comments
Did you find solution? Because i'm also experiencing this problem |
My current workaround is to fire the on-close event manually during the search button's click event |
Working example: http://embed.plnkr.co/YOlzjtEXOseugxkyonWS/ |
@brentvee In my understanding that happens because it is using Root cause of this could be because of two things.
To fix the issue you can change the event bubbling order, to fire document event first and then the
and change
to
Note: Not sure about what would be implication of this solution. |
I'm experiencing a weird issue where I have a search button with a bound ng-click="search()".
When opening the multi-select control, selecting some items, then immediately clicking my search button (so just clicking away from the multi-select, but directly on my search button), the search button's click event is firing before the on-close event of the multi-select.
Is there something I should be doing differently?
Thanks
The text was updated successfully, but these errors were encountered: