Tooltip-Popover not visible on top of all the views when popover-Placement is RIGHT
See original GitHub issueonLongPress on emojis displaying toolTip-popOver when placement is TOP, LEFT, BOTTOM then all good, tooltips displaying correctly top of all emojis but problem is when the placement is RIGHT Look at the images below, the tooltip is visible but below the Imojis it should be on top.
Device/Setup Info:
- OS: Android 6
react-native
version: 0.63.4react-native-popover-view
version: ^3.1.1
Screenshots
Description | Image |
---|---|
when PopverPlacement is TOP | |
when PopverPlacement is RIGHT |
Debug Output when toolTop is on right side
when toolTop is on left side
Issue Analytics
- State:
- Created 2 years ago
- Comments:8 (6 by maintainers)
Top Results From Across the Web
bootstrap popover not showing on top of all elements
I had tooltips flickering, showing corectly only for half of the items on page, jumping from top to left continously, all kinds of...
Read more >Popovers · Bootstrap v5.0
Popovers are opt-in for performance reasons, so you must initialize them yourself. Zero-length title and content values will never show a popover.
Read more >Everything I Know About Positioning Poppers (Tooltips ...
Conceptually, the CSS used to position them is straightforward: you set position: absolute on the element and some top and left coordinates to ......
Read more >How to Position a React-Bootstrap Popover - Pluralsight
Position the Popover Using the Placement Prop It has been set to right ; hence the popover comes to the right of the...
Read more >Popovers - Stacks
Dictates where to place the popover in relation to the reference element. By default, the placement value is bottom . Accepted placements are...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
This is fascinating. However, it is probably something you can (and should) fix from your end. In TOOLTIP mode, the placement of the
<Popover>
in the hierarchy is important. If it is above an element in the JSX, it will show behind that element. If it is below an element, it will show on top of it. That is simply how JSX (and HTML) work, when no additional styles are applied. You can either adjust the placement of the<Popover>
component, or use azIndex
inpopoverStyle
to force it to be displayed above other elements.Closing due to inactivity