2,201 questions
0 votes
1 answer
158 views
ShadCN Calendar inside Popover not interactive
I am using the Calendar component from ShadCN UI inside a Popover in a React + Vite project. When I click the trigger button, the Popover opens, but the calendar is not interactive - I cannot select ...
1 vote
1 answer
158 views
SwiftUI Custom Popover Background Animation
How to prevent the button background darkening after closing a popover? The attached gif shows the button becoming darker before it resets to glass. Here is the code for the button and the popover: ...
-1 votes
2 answers
188 views
Why won't a popover menu on a toolbar launch a fullScreenCover on iOS26?
On one of my app screens, when a user taps a Button on a .toolbar, it displays a popover that has a list of file links. When a link is tapped, a fullScreenCover should appear displaying the contents ...
0 votes
0 answers
134 views
SwiftUI Datepicker inside .popover does not render with correct size
I do not understand why the question has been closed. The problem was definitly not caused by a typo. Simply copy the code I provided into a new Swift project and run the app. You should be able to ...
1 vote
1 answer
183 views
iOS 26: Scroll indicator falls outside .popover content
When showing a popover: struct ValueRowView<Content: View, PopoverContent: View> : View { let label: String let value: Content @State private var showPopover: Bool = false let ...
1 vote
1 answer
123 views
Creating css anchors with dynamic identifiers
For the following HTML code (with AlpineJS syntax), I intent to create dynamic anchors for each entry. This works for the popover, but how can I set it for the button as well? <!-- looping ...
0 votes
0 answers
25 views
why date wrapper goes top left of screen
The DateWrapper popover is appearing at the top-left side of the button. I've tried fixing it, but it's still not working. how to fix it? <Box sx={{ display: "flex", ...
4 votes
1 answer
133 views
How to pass context properly in ngbPopover?
I can't access context in HTML, although the feature is already there in an official document. HTML <button type="button" class="btn btn-primary" triggers="manual&...
0 votes
0 answers
63 views
dialog popover with page scroll bar
I would like to create a modal (similar to Bootstrap's modals) with <dialog popover>. I want the scroll bar to be in the page, not in the modal -<dialog>. Here is the code: <button ...
0 votes
1 answer
85 views
Flutter: Popover not displaying arrow
In my very simple layout, I would like to display a popover using the minikin/popover package. The popover does appear. However, the arrow underneath it is not visible (except for a very slight shadow)...
1 vote
1 answer
121 views
SwiftUI: Show popover at mouse click location
I am working with a SwiftUI List on macOS, and I have a popover view that I need to show from each row. I have an implementation that works but it shows the popover from one fixed point on the row. I ...
0 votes
1 answer
387 views
Implement a React Popover primitive that is not affected by other layers z-index values or position fixed issues inside containers with transforms
I need to implement a Popover primitive that always appear on top of all other elements in the page, I tried to see if some well known solutions have this implemented but it seems in all cases the ...
1 vote
2 answers
341 views
Is there a way to get a list to size to fit in a popover?
In SwiftUI on iOS, I have some data that I want to display in a popover. It has to be in a list because I want it to be able to utilize swipeActions. The problem is that for some reason, lists don't ...
2 votes
2 answers
70 views
Backdrop alternative letting specific selectors intact
In a pure HTML/CSS website (no JS) with a traditional body structure (header, main and footer), the header contains some buttons for navigation or locale selection using the Popover API. The resulting ...
1 vote
4 answers
640 views
How to prevent clicking buttons under a css popover's backdrop? [duplicate]
I am implementing simple popover elements across my website. They take c. 80% of the viewport's width, so I have enabled a blur effect backdrop around the popover. .mb_popbox::backdrop { backdrop-...