257
Views
2
Comments
Solved
[OutSystems UI Web] Dropdownselect list not overflowing outside of Modal
outsystems-ui-web
Web icon
Forge asset by OutSystems

Hi,

In version 1.7.10, a dropdownselect list inside a short modal would work like the following screenshot, the lists' z-index being greater than of modals:


But with version 1.8.0, I see the following behaviour. The list of the dropdownselect doesn't overflow onto the modal, creating scroll both in itself and inside modal, thus being unusable:

I wanted to ask here whether this is expected before applying a CSS solution.


Thank you,

Ozan

2024-09-14 05-42-00
Ozan Can Çalı
Champion
Solution

I fixed this problem by removing the overflow-y property of .modal-content.

.modal-content {
    overflow-y: unset !important;
}
2020-02-21 13-39-55
João Franco

The problem with that fix is that, if you have a lot more content in the modal, it no longer scrolls, making the extra content overflowing.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.