Unplanned
Last Updated: 20 Nov 2024 10:25 by Goran
Created by: Charles
Comments: 1
Category: PDFViewer
Type: Bug Report
2
In version 7.0.0 the Pdf Viewer document content is blurry.
Completed
Last Updated: 14 Nov 2024 09:28 by ADMIN
Release 7.0.0

When the user scrolls the PDF Viewer down and then opens another PDF file, the new document should display on the first page. Currently, the new file displays scrolled to the page from the previous file and the user must scroll to the top manually.

===

A possible workaround is to scroll the PDF file with JavaScript in the PDF Viewer OnOpen event:

 

@inject IJSRuntime js

<TelerikPdfViewer Data="@PdfSource"
                  Height="600px"
                  OnOpen="@OnPdfViewerOpen"
                  Class="@PdfViewerClass">
</TelerikPdfViewer>

<script suppress-error="BL9992">
    function scrollPdfToTop(selector) {
        var pdfCanvas = document.querySelector(selector);
        if (pdfCanvas) {
            pdfCanvas.scrollTop = 0;
        }
    }
</script>

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

    private string PdfViewerClass { get; set; } = "scrollable-pdf-viewer";

    private async Task OnPdfViewerOpen()
    {
        await js.InvokeVoidAsync("scrollPdfToTop", $".{PdfViewerClass} .k-pdf-viewer-canvas");
    }
}

 

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

Completed
Last Updated: 02 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.

Duplicated
Last Updated: 16 Sep 2024 12:39 by ADMIN
Created by: Matthijs
Comments: 1
Category: PDFViewer
Type: Bug Report
0

We're currently working on requiring a Google CASA Security Assessment, as part of this they scanned our site. 

However, the scan found an eval() function in the telerik-blazor.js file:

if(_util.isNodeJS){const worker=eval("require")(this.workerSrc);return worker.WorkerMessageHandler}

 

Is it possible to remove eval() from telerik-blazor.js?

 
Unplanned
Last Updated: 03 Sep 2024 09:19 by René
Created by: Miroslav
Comments: 1
Category: PDFViewer
Type: Feature Request
22
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
Completed
Last Updated: 26 Aug 2024 13:50 by ADMIN
Release 2024 Q2 (May)
Created by: Srdjan
Comments: 13
Category: PDFViewer
Type: Bug Report
19
If you compare the print quality against the Kendo UI jQuery PDF viewer, the quality difference is night and day. We did not investigate what is happening under the hood in both components. However, the same printing dialog appears when printing via both components and both of them are web components, which indicates to us, that this issue is not related to the browser.
Unplanned
Last Updated: 13 Aug 2024 20:14 by Mindaugas
Created by: Mindaugas
Comments: 0
Category: PDFViewer
Type: Feature Request
6

We still have some problems with printed pdf quality after the updates in 6.0.0. When pdf is printed using Telerik PDF viewer it seems it gets processed/rasterized and loses quality.

 

Completed
Last Updated: 05 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: 06 Jun 2024 08:18 by Ron
Open a PDF file in the PDF Viewer. Tap the magnifier icon to initiate the search. Start typing, the component freezes. 
Unplanned
Last Updated: 06 Jun 2024 08:15 by Ron
Created by: Brian
Comments: 1
Category: PDFViewer
Type: Feature Request
2
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: 20 May 2024 15:44 by ADMIN
Created by: Marc
Comments: 2
Category: PDFViewer
Type: Feature Request
2
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: 29 Apr 2024 17:47 by David
Created by: Simon
Comments: 6
Category: PDFViewer
Type: Bug Report
7

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: 24 Apr 2024 14:12 by ADMIN
Created by: Mir
Comments: 7
Category: PDFViewer
Type: Feature Request
20
Able to add/edit/view Annotations to the pdf viewer.
Duplicated
Last Updated: 24 Apr 2024 06:43 by ADMIN
Created by: Scott
Comments: 1
Category: PDFViewer
Type: Feature Request
1

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.

Completed
Last Updated: 22 Apr 2024 16:08 by ADMIN
Release 2024 Q2 (May)
I am opening a standard PDF document and it is not properly displayed in the PDF Viewer. For example, you can see the logo and the table borders but the text of the PDF is missing. If you open the same document in a normal Adobe viewer it is fine.
Unplanned
Last Updated: 07 Mar 2024 13:11 by David
Created by: Nicolas
Comments: 3
Category: PDFViewer
Type: Feature Request
27
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". 
Completed
Last Updated: 05 Mar 2024 06:55 by ADMIN
Release 2024 Q2 (May)
Created by: Bjørnar
Comments: 0
Category: PDFViewer
Type: Bug Report
22

If the PdfViewer is initialized with a default document, the display performance of this document will be a lot worse, compared to PDF documents that are loaded programmatically after the component is already on the web page.

 

Unplanned
Last Updated: 25 Jan 2024 13:12 by Brett
Created by: Peter
Comments: 1
Category: PDFViewer
Type: Feature Request
6
I would like to use buttons that allow me to rotate the rendered PDF clockwise and counter-clockwise.
Duplicated
Last Updated: 15 Nov 2023 13:43 by Kees
Created by: Kees
Comments: 2
Category: PDFViewer
Type: Feature Request
0

I would like to have access to the search option of the pdf viewer.
I have an old Asp.net framework site hosting the scanned pages (57.000) of the local newspaper from its start in May 1945 and want to rewrite it in Blazor.

One of the features is that you can search for words on all pages (using SQL Full-text indexing search on a table with all the plain texts to quickly locate the pages containing these words) and when a found page is clicked show the pdf of that page and prefill the searchbox of the pdf viewer to automatic highlight the found words).

This article gives a solution to achieve that in JS, but it would be nice if this could be done from de C# code https://www.telerik.com/forums/open-pdfviewer-with-highlighted-text

Kind regards,

Kees Alderliesten

 

1 2