Hi,
I recently updated my Blazor Wasm syncfusion dlls to from v. 18.3.0.53 to 19.3.0.53. I discovered this weird new bug where apparently the font size selector popup is opened automatically on pdf viewer component / document load. This is very weird since i have hidden all the annotation tools so this shouldn't be possible. The popup is always rendered to top left.
Inspecting DOM reveals that most of the pdf viewer related tools are already rendered there. Why?
Here's the markup:
Code behind:
How can i fix this?
br. Ville
|
<style>
.e-pv-prop-dropdown.e-popup {
visibility: hidden !important;
}
</style> |
Thanks, that css worked. Bit hackyish IMHO but it works. There isn't any intentional code in my app that should open that popup element. It just shows up without that css forcing.