Welcome to the Blazor feedback portal. We’re happy you’re here! If you have feedback on how to improve the Blazor, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

In the PDF Viewer, we've utilized a list as the AnnotationToolbarItems component. Consequently, when the component is being destroyed, the list is also cleared. Hence, it's necessary to modify this list into parameter.

Current Code 

<SfPdfViewer2>
          <
PdfViewerToolbarSettings AnnotationToolbarItems="@AnnotationToolbarItems">
</PdfViewerToolbarSettings>
</SfPdfViewer2>

Expected Code
<SfPdfViewer2>
           <
PdfViewerToolbarSettings>
                
 <AnnotationToolbarItems 
HighlightTool = "True"
>
<AnnotationToolbarItems>
           </PdfViewerToolbarSettings>
</SfPdfViewer2>