Unplanned
Last Updated: 27 Jan 2023 15:21 by Miroslav

The loading animation is visible only when a user opens a file from the Toolbar of the component. When programmatically opening a file, the loader is not shown. 

 

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.
Completed
Last Updated: 2 Oct 2024 14:00 by ADMIN

Open the PDF Viewer component online demo and click the download button:

Expected - the PDF must be downloaded.

Current - the file is not downloaded.

Unplanned
Last Updated: 10 Mar 2023 09:20 by Miroslav
Created by: Miroslav
Comments: 0
Category: PDFViewer
Type: Bug Report
4

When you search for a term, the document is not scrolled. Also when the user inserts a search term and clicks Enter the document is scrolled to the second match instead of the first one.

Duplicated
Last Updated: 20 Jul 2023 20:53 by ADMIN
Created by: Lammert
Comments: 0
Category: PDFViewer
Type: Feature Request
4
We are trying multiple viewers with the same files in a Blazor server application.
But the other viewers load larger file sizes faster because they load them in modules and when you scroll through the viewer, the others will be loaded.

I didn't see this in the Telerik pdf viewer. Am I correct that this is not standard? And is there a way to make it that way?
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.
Completed
Last Updated: 14 Nov 2024 09:28 by ADMIN
Release 7.0.0

After clicking the Print button, the pages are ordered incorrectly. Can be seen in the preview window.

Steps to reproduce:

1. Open https://demos.telerik.com/blazor-ui/pdfviewer/overview

2. Click the Print button

Unplanned
Last Updated: 3 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: 27 Jan 2023 12:38 by Thomas
I want to set the Data of a PDFViewer from the OnRowClick event handler. If I use the ReadAllBytesAsync() method, the PDF viewer does not render the PDF document. I need to use the synchronous version (ReadAllBytes) to make this work.
Unplanned
Last Updated: 6 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: 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: 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: 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.
Completed
Last Updated: 5 Aug 2024 13:31 by ADMIN
Release 6.1.0
The ZoomChanged event doesn't fire when the user clicks on the zoom in/out buttons or selects a new zoom level from the ComboBox.
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: 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

Planned
Last Updated: 12 Mar 2025 12:37 by Chris
Scheduled for 2025 Q2 (May)
Created by: Evan
Comments: 1
Category: PDFViewer
Type: Bug Report
2

Related to PDF Viewer does not display editable Acro fields, which was fixed in version 8.0, but the problem with readonly Acro fields persisted.

This is a regression in version 7.0.0. Version 6.2.0 displays all the acro field values as expected.

Completed
Last Updated: 28 Mar 2025 11:26 by ADMIN
Release 2025 Q2 (May)
Created by: Miroslav
Comments: 1
Category: PDFViewer
Type: Feature Request
2

When a user invokes a Search tool, their intention is to directly write a text to search, therefore the edit for the search text should be focused immediately. In the current implementation, users have to manually focus the edit all the time, which is really inconvenient.

Unplanned
Last Updated: 3 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 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.