I have an SfDialog containing a SfPdfViewerServer
it exhibits all kinds of issues with placement and resizing.
1) When the dialog comes up the PDF Viewer displays correctly
when clicking on the PDF document the toolbar moves up and half of it is clipped.
interestingly this does not happen when simulating a mobile device in chrome
(screenshot attached)
2) When resizing is enabled on the dialog the PDF viewer causes the dialog to only resize in width not in height
3) depending on widht/height settings in the PDF viewer the viewer does not properly resize. Scrollbars stay in different locations etc
i would like to be able to have a simply resizable dialog showing a PDF document
<SfDialog
EnableResize="true"
IsModal="true" Width="1020px" Height="600px" ShowCloseIcon="true" @bind-Visible="pdfShowing">
<DialogTemplates>
<Header>@title</Header>
<Content>
<SfPdfViewerServer @ref="pdfViewer" Height="100%" Width="100%"></SfPdfViewerServer>
</Content>
</DialogTemplates>
</SfDialog>