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
We tackle several problems with OverlayPanels, because they don't behave like documented.
Our selenium frontend tests don't work properly, because the implementation uses the currentTarget of the event, which "is only available while the event is being handled", as stated in the specification. When handling events asynchronously this might lead to a null target and exceptions when showing and aligning the OverlayPanel.
This could fix the issue. In my opinion, event.target and not event.currentTarget should be used to align the Panel.
Similar to PrimeFaces, add a target option to Overlay to display the panel relative to a specific element, should use the event target by default.
The text was updated successfully, but these errors were encountered: