All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
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