Hello,
I am trying to display a Bold Reports report inside a Blazor SfDialog component, but the popup appears empty. The report works fine outside the dialog, but when placed inside SfDialog, it does not render properly.
I have verified that all necessary scripts and styles are included. Could you please provide guidance on how to resolve this issue?
Thank you in advance for your support.
SfDialog Height="100%" Width="100%" Target="#target" ShowCloseIcon="true" @bind-Visible="Visibility">
<DialogTemplates>
<Header>
Success
</Header>
<Content>
<div id="report-viewer" style="width: 100%;height: 950px"></div>
</Content>
</DialogTemplates>
<DialogButtons>
<DialogButton Content="Close" IsPrimary="true"/>
</DialogButtons>
</SfDialog>