Hi.
This is happening to me also and I think that I know why. What I don´t know is how to fix it.
For the div with id "
dialog-{guid}" is set element.style {max-height: 4px}
I download your project and it is as expected, but the same SfDialog in my project no. Should be something else in my project then. But I don´t find it. I don´t set this max-height anywhere.
Thanks
EDIT: Finally I resolved it with (below), regardless I donlt like to have to do it
<style>
.e-dialog {
min-height: 300px !important;
}
</style>
Hi jorge,
Thank you for reaching out to us regarding the issue you encountered with the SfDialog in your project.
Upon reviewing your concern, it appears that the dialog control's rendering might be affected by the height settings in your project. Typically, when the dialog is rendered based on the body, it inherits its height from the body element. However, if the dialog's height exceeds that of the body, adjustments may not occur as expected.
To address this issue, we recommend applying specific CSS styles to ensure proper rendering of the dialog. You can utilize the following CSS code snippet:
html, body { height: 100%; } |
Sample: https://blazorplayground.syncfusion.com/BjVfDJjThtNziesO
By applying this style, you can ensure that the dialog adjusts appropriately within your project environment.
If you encounter any further difficulties or have additional questions, please feel free to reach out. We're here to assist you.
For further reference and understanding, you can consult our documentation on Dialog Component: https://blazor.syncfusion.com/documentation/dialog/getting-started#add-blazor-dialog-component