Unplanned
Last Updated: 19 Mar 2025 11:58 by Joel
Created by: Joel
Comments: 0
Category: PDFViewer
Type: Feature Request
2

I want to detect when a user has added or removed an annotation in the PDF Viewer.

Unplanned
Last Updated: 19 Mar 2025 11:28 by ADMIN

Please expose a parameter to show or hide the "Select files..." button inside the empty PDF Viewer.

Currently, a possible workaround is to use CSS. Additionally, you may configure the Toolbar to not include the "Open" tool.

<style>
    .no-open .k-blank-page {
        display: none;
    }

    /* Use these selectors if you want to separately target the upload or the dropzone */
    /* .no-open .k-external-dropzone,
    .no-open .k-upload{
        display: none;
    } */
</style>

<TelerikPdfViewer Data="@PdfSource"
                  OnOpen="@OnPdfOpen"
                  Height="600px"
                  Class="no-open">
    <PdfViewerToolBar>
        <PdfViewerToolBarDownloadTool />
        <PdfViewerToolBarPrintTool />

        <PdfViewerToolBarSpacer />

        <PdfViewerToolBarPagerTool />

        <PdfViewerToolBarSpacer />

        <PdfViewerToolBarZoomTool />
        <PdfViewerToolBarSelectionTool />
        <PdfViewerToolBarSearchTool />
        <PdfViewerToolBarAnnotationsTool />
    </PdfViewerToolBar>
</TelerikPdfViewer>

@code {
    private byte[] PdfSource { get; set; }

    private bool LoaderVisible { get; set; }

    private async Task OnPdfOpen(PdfViewerOpenEventArgs args)
    {
        // Cancel the event for additional precaution in case someone bypasses the CSS and forces the page to show the button and the dropzone.
        args.IsCancelled = true;
    }
}

Unplanned
Last Updated: 03 Mar 2025 18:39 by Gal
Created by: Gal
Comments: 0
Category: PDFViewer
Type: Bug Report
2
The quality of the PDFViewer document in the print preview popup has declined since version 6.2.0.
Unplanned
Last Updated: 19 Feb 2025 11:59 by Werdna
Created by: Werdna
Comments: 0
Category: PDFViewer
Type: Feature Request
5
I need access to the file the user has open. Also, if the file is changed, like with annotations, I want to access those changes too.
Unplanned
Last Updated: 19 Feb 2025 06:47 by Miroslav
Created by: Miroslav
Comments: 0
Category: PDFViewer
Type: Bug Report
2

Trying to upload a large file from a mobile device breaks the component.
Step to reproduce:

  1. Open this REPL example on a mobile device
  2. Click the "Load Data" button.

The issue can be reproduced only in version 8.0.0

Unplanned
Last Updated: 11 Feb 2025 13:05 by Joel

The PDF Viewer fails to display the loaded document if StateHasChanged() is called when the Data parameter is set.

A possible workaround is to call await Task.Delay(...) after StateHasChanged()

Test Page (run this in a server app):

<h1>PDF Viewer Tests</h1>

<h2>Load Initially</h2>

<TelerikPdfViewer Data="@FileData1"
                  EnableLoaderContainer="true"
                  Height="30vh"
                  Zoom="0.75m">
</TelerikPdfViewer>

<h2>Load On Demand</h2>

<TelerikButton ThemeColor="@ThemeConstants.Button.ThemeColor.Primary"
               OnClick="@( async () => await LoadPdf(2) )">Load PDF</TelerikButton>

<TelerikPdfViewer Data="@FileData2"
                  EnableLoaderContainer="true"
                  Height="30vh"
                  Zoom="0.75m">
</TelerikPdfViewer>

@code {
    private byte[]? FileData1 { get; set; }
    private byte[]? FileData2 { get; set; }

    protected async override Task OnInitializedAsync()
    {
        await LoadPdf(1);
    }

    public async Task LoadPdf(int id)
    {
        await Task.Delay(1000);

        if (id == 2)
        {
            FileData2 = Convert.FromBase64String(PdfBase64);
        }
        else
        {
            FileData1 = Convert.FromBase64String(PdfBase64);
        }

        StateHasChanged();

        await Task.Delay(300);
    }

    private const string PdfBase64 = "JVBERi0xLjEKMSAwIG9iajw8L1R5cGUvQ2F0YWxvZy9QYWdlcyAyIDAgUj4+ZW5kb2JqCjIgMCBvYmo8PC9UeXBlL1BhZ2VzL0tpZHNbMyAwIFJdL0NvdW50IDEvTWVkaWFCb3ggWy00MCAtNjQgMjYwIDgwXSA+PmVuZG9iagozIDAgb2JqPDwvVHlwZS9QYWdlL1BhcmVudCAyIDAgUi9SZXNvdXJjZXM8PC9Gb250PDwvRjE8PC9UeXBlL0ZvbnQvU3VidHlwZS9UeXBlMS9CYXNlRm9udC9BcmlhbD4+ID4+ID4+L0NvbnRlbnRzIDQgMCBSPj5lbmRvYmoKNCAwIG9iajw8L0xlbmd0aCA1OT4+CnN0cmVhbQpCVAovRjEgMTggVGYKMCAwIFRkCihUZWxlcmlrIFBkZlZpZXdlciBmb3IgQmxhem9yKSBUagpFVAplbmRzdHJlYW0KZW5kb2JqCnhyZWYKMCA1CjAwMDAwMDAwMDAgNjU1MzUgZgowMDAwMDAwMDIxIDAwMDAwIG4KMDAwMDAwMDA4NiAwMDAwMCBuCjAwMDAwMDAxOTUgMDAwMDAgbgowMDAwMDAwNDkwIDAwMDAwIG4KdHJhaWxlciA8PCAgL1Jvb3QgMSAwIFIgL1NpemUgNSA+PgpzdGFydHhyZWYKNjA5CiUlRU9G";
}

Unplanned
Last Updated: 23 Jan 2025 10:26 by HyunSoo
Created by: HyunSoo
Comments: 0
Category: PDFViewer
Type: Feature Request
2
I want to detect when a specific page is rendered, so I can extract information from that page. Please expose a render event similar to the one in jQuery.
Unplanned
Last Updated: 15 Dec 2024 19:29 by Marc
Created by: Nicolas
Comments: 4
Category: PDFViewer
Type: Feature Request
30
I would like to be able to control the default zoom level in the PDF viewer. For example, I would like to be able to set it as "Fit to Page". 
Unplanned
Last Updated: 15 Dec 2024 19:20 by Marc
Created by: Marc
Comments: 3
Category: PDFViewer
Type: Feature Request
4
I want to be able to pinch the document in the PDFViewer and zoom it. Similar to how PDF is fluently zoomed in and out on pinch if opened in a web browser.
Unplanned
Last Updated: 09 Dec 2024 14:59 by Mark
Created by: Mark
Comments: 0
Category: PDFViewer
Type: Feature Request
10
When displaying a PDF using the PDFViewer component, I have noticed that, if the PDF being displayed has any website links/hyperlinks in it, the links cannot be clicked. If I download the PDF from the component and open the file, I am able to click the links. Can you add this functionality?
Unplanned
Last Updated: 09 Dec 2024 13:36 by ADMIN
Created by: Scott
Comments: 3
Category: PDFViewer
Type: Feature Request
8

Hello, I like the Telerik PDF Viewer for Blazor, but it's not supporting Table of Contents (TOC) links.  I would like to request this feature so that there are links in the TOC automatically.  I'm using Blazor WebAssembly.

Thank you for considering my request.

Unplanned
Last Updated: 03 Dec 2024 07:56 by Markus
Created by: Markus
Comments: 0
Category: PDFViewer
Type: Feature Request
4

I want to have an option for digital signatures with browser-based certificate selection.

===

ADMIN EDIT

===

For the time being, you can use the following custom approach: Signing PDFs with PdfPRocessing in PdfViewer.

Unplanned
Last Updated: 26 Nov 2024 09:34 by Graham
Enable navigation by displaying page thumbnails, allowing users to click on a thumbnail to jump directly to the corresponding page.
Unplanned
Last Updated: 03 Sep 2024 09:19 by René
Created by: Miroslav
Comments: 1
Category: PDFViewer
Type: Feature Request
25
Hello,

we have a bookmark structure with page numbers associated with a PDF and user can navigate throught this structure and jump to particular pages - therefore we need to set the current page of PDF Viewer programmatically.  

Moreover we need to know the count of pages of the viewed PDF file. This can be gotten by using PDF processing API, but it is a bit inconvenient to open the PDF file twice just for this purpose especially in case of big PDF files.

Very thanks,

Miroslav
Unplanned
Last Updated: 06 Jun 2024 08:15 by Ron
Created by: Brian
Comments: 1
Category: PDFViewer
Type: Feature Request
3
Our use case doesn't seem that too "out of the ordinary", but we have standardized forms that are dynamically rendered using Telerik inputs and a PDF Viewer component and when the user focuses on one of the inputs, the PDF needs to pan/zoom in the general region/area where the value of that input field is located on the PDF.  It's basically to give the user the ability to verify a value that has been OCR'd from the PDF and displayed in the input field.  We have another feature request to add the ability to quickly add a square annotation to the PDF via the API as well because we have to highlight the actual area on the PDF as we pan/zoom.
Unplanned
Last Updated: 29 Apr 2024 17:47 by David
Created by: Simon
Comments: 6
Category: PDFViewer
Type: Bug Report
9

Hallo,

i want to Render PDF Files with the PDF Viewer Component.

The Data of the PDF is already fetched from the API when the PDF-Viewer starts Rendering the Loading animation appears and freezes.

After a few Seconds the PDF will be Rendered.

The size of the PDF File is about 5MB.

 

 


Unplanned
Last Updated: 25 Jan 2024 13:12 by Brett
Created by: Peter
Comments: 1
Category: PDFViewer
Type: Feature Request
8
I would like to use buttons that allow me to rotate the rendered PDF clockwise and counter-clockwise.
Unplanned
Last Updated: 14 Sep 2023 07:47 by ADMIN
Created by: David
Comments: 3
Category: PDFViewer
Type: Feature Request
15

Adding the ability to fill in a PDF online in the PDF Viewer would open a lot of opportunity to the library.

The ability to fill-out, sign, and date would be great with a save callback, so it can be pushed to an API.

Unplanned
Last Updated: 13 Sep 2023 07:17 by ADMIN
Created by: n/a
Comments: 0
Category: PDFViewer
Type: Feature Request
2
Currently we use Telerik WinForm and Blazor PDFViewer components in our products and it is working well. We have a requirement for the PDF redaction and your product does not support that. I would like to make a feature request to add a PDF reaction to the current PDF Viewer. In which the user will have an ability to draw a box around the sensitive content. Ideally would be better if the text content below the image layer is also removed but in the beginning being able to draw box and print would be greatly appropriated.
Unplanned
Last Updated: 08 Sep 2023 11:36 by Vince
Created by: Vince
Comments: 0
Category: PDFViewer
Type: Feature Request
7
An event that will fire when the PDF is fully loaded in the component. I want to use that event to call the PDFViewerReference.Print() method.
1 2