Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Docs & Resources
Productivity and Design Tools
Hi,
I want to disable and hide the marked part of the PDFViewer component.
How can i do that?
Thanks,
Ben
Hi Ben,
To remove the marked part from the PDFViewer, you can use the following CSS style:
<style> .k-pdf-viewer-pages .k-icon-xxxl, .k-pdf-viewer-pages .k-upload { display: none; } </style> <TelerikPdfViewer Data="@PdfSource" OnDownload="@OnPdfDownload" Height="600px"> </TelerikPdfViewer> @code { private byte[] PdfSource { get; set; } private async Task OnPdfDownload(PdfViewerDownloadEventArgs args) { args.FileName = "PDF-Viewer-Download"; } protected override void OnInitialized() { PdfSource = Convert.FromBase64String(PdfBase64); base.OnInitialized(); } private const string PdfBase64 = ""; }
Regards, Hristian Stefanov Progress Telerik
Hi John,
Thank you for sharing your additions to the example so other developers can benefit from this.
Kind Regards,
Hristian