KesSaft
KPCKevin Powell - Community
•Created by KesSaft on 3/25/2025 in #front-end
Select in Popup
Hey,
I use the dialog element to create popups in react. I use these popups also for forms in which I use custom created selects. The problem. when I set no
overflow
on the dialog, it overflows on mobile devices and not the whole form is visible. when I set it to overflow-y: auto;
it is scrollable, but the select dropdown is then no going outside the popup, which not only looks bad but also makes the user need to scroll down to the dropdown...
The select just uses position relative and absolute on the dropdown.
Is there a way to fix that?
I would like to have the dialog scrollable when there is too high of a content in it, but the selects should still open on top and overflow the dialog. They would also then need to automatically adjust, so they don't overflow over the screen size.2 replies
KPCKevin Powell - Community
•Created by KesSaft on 10/23/2024 in #front-end
Horizontal Grid Image Gallery

35 replies
KPCKevin Powell - Community
•Created by KesSaft on 12/30/2023 in #back-end
Not getting data of newly added array field
Hey,
does anyone know how to add new fields to existing schemas properly?
Because I added a new field with is an objectarray and I already saved some data to it which I checked in the mongodbCompass and it worked. But when trying to get the data unsing findOne, I get the document as before but the new field is an empty array and when trying to console.log only the array, it is undefined....
Anyone any idea?
2 replies
KPCKevin Powell - Community
•Created by KesSaft on 2/16/2023 in #front-end
Scroll in absolute item with body overflow: hidden
Hey,
I have a body with a fixed sidebar and a absolute main section.
Both components are in the body which has a
width of 100vw
and a height of 100vh
.
The body has also overflow set to hidden
.
My Problem is now that when I am in the mobile view, I can scroll like 50vh
further down and 50vw
further to the side.
when returning my min-width property from the main element, everything is working.
But I need the min-width because else it looks really bad.
Has anyone any idea?13 replies
KPCKevin Powell - Community
•Created by KesSaft on 10/18/2022 in #front-end
SVG Animation ease-in-out
Hey,
How can I add a timing-function to the animation tag inside a svg?
I want to make it easein-out and be default it is linear.
2 replies