-
Hi, In my current project I meet with problem that I cannot force FluentDialog to scroll FluentDialogBody when content of it dynamically grows. This is how I define dialog and set PreventScroll to false: This is a picture what happens and how controls are rendered outside of FluentDialog: Folder in repo with code of page and components: folder. Is there something I do wrong? Or maybe it is not the way to do this, and I should try another attempt (like do it on page not in Dialog)? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You need to do something with the
|
Beta Was this translation helpful? Give feedback.
-
Thanks. |
Beta Was this translation helpful? Give feedback.
You need to do something with the
Style
of theFluentDialogBody
. like addingoverflow: scroll;
:PreventScroll
is to stop scrolling the content behind the dialog,