Duplicated
Last Updated: 10 Sep 2024 12:40 by ADMIN
Created by: Monique
Comments: 2
Category: PdfViewer
Type: Feature Request
0
Until the PDFViewer can support layers, it would be great if a property could be exposed that would allow the developer to detect if the PDF has layers so they can alert the viewer to the possibility that the layers may not be visible.
Unplanned
Last Updated: 03 Sep 2024 08:32 by ADMIN
Created by: Nadya
Comments: 0
Category: PdfViewer
Type: Feature Request
1
Enable the customers to work with annotations of type Stamp.
Unplanned
Last Updated: 03 Sep 2024 08:27 by ADMIN
Created by: Nadya
Comments: 0
Category: PdfViewer
Type: Feature Request
1
A pop-up annotation displays text in a pop-up window for entry and editing. It typically does not appear alone but is associated with a markup annotation (its parent annotation) and is used for editing the parent’s text.
Unplanned
Last Updated: 04 Sep 2024 13:50 by ADMIN
Created by: Monique
Comments: 1
Category: PdfViewer
Type: Feature Request
0

The problem I'm trying to solve is that users do not know that the original document may not be what they are seeing in the viewer when there are layers.    

A property that indicates that a document has layers would allow the system to refuse to open the document.

Unplanned
Last Updated: 16 Aug 2024 08:46 by ADMIN
A specific scanned file is not displayed in the viewer. This lead to empry pages.
Duplicated
Last Updated: 08 Aug 2024 10:37 by ADMIN
Created by: Mihajlo
Comments: 1
Category: PdfViewer
Type: Bug Report
0

The attached file lorem-ipsum.pdf is rendered incorrectly in PdfViewer. I suspect it has something to do with kerning, because monospace font is not affected. Adobe Acrobat, Foxit PDF Reader, and Chrome render the file correctly.

The file was created with Pandoc, open source software, converting a markdown file (.md) to .pdf.

Unplanned
Last Updated: 25 Jun 2024 14:21 by ADMIN

When RadPdfViewer is in text selection mode and the user is trying to select a word by double-clicking on it, the last letter of the word is not selected when the word is followed by some symbols like '.', ':', '(', '...'

Also, the CaretPosition is not correct.

Unplanned
Last Updated: 02 May 2024 12:01 by ADMIN
On HDPI (200%) Print Preview Dialog bottom buttons are cut off.
Unplanned
Last Updated: 07 May 2024 12:18 by ADMIN
Created by: Philip
Comments: 2
Category: PdfViewer
Type: Bug Report
2
Signature fields are not rendered in the PDF while loading it in the RadPdfViewer control.
Unplanned
Last Updated: 17 Apr 2024 10:05 by ADMIN
Provide a new property that specifies FileName in SaveAs command.
Unplanned
Last Updated: 09 Apr 2024 05:57 by Tino

Steps to reproduce:

1. Load a PDF document with 0 pages

2. Enter some text in the search textbox and click the next/prev buttons

Expected: the search textbox should be either disabled or should ignore any search operation

Actual: an error occurs

Workaround:

    Private Sub pdf_Viewer_DocumentLoaded(sender As Object, e As EventArgs)
        If pdf_Viewer.Document.Pages.Count = 0 Then
            pdf_Toolbar.SearchTextBox.Enabled = False
            pdf_Toolbar.NextButton.Enabled = False
            pdf_Toolbar.PreviousButton.Enabled = False
        Else
            pdf_Toolbar.SearchTextBox.Enabled = True
            pdf_Toolbar.NextButton.Enabled = True
            pdf_Toolbar.PreviousButton.Enabled = True
        End If
    End Sub

 

Completed
Last Updated: 31 Jan 2024 11:39 by ADMIN
Release 2024 Q1 (2024.1.130)
A password is asked although adobe opens the document without one
Unplanned
Last Updated: 07 Nov 2023 14:51 by ADMIN

Use the attached pdf document and launch the PdfPrintPreviewDialog. As it is demonstrated in the gif file, the preview dialog moves the pages slower than the pdf viewer itself.

Expected behavior: the performance for navigating the pages should be at least identical.

Unplanned
Last Updated: 16 Oct 2023 11:55 by ADMIN

This is the result with R3 2022:

 

 

This is the result with R2 2023 SP1:

 

Completed
Last Updated: 01 Nov 2023 11:23 by ADMIN
Release R3 2023 (LIB 2023.3.1101)
We are receiving Pdf files and for some we are experiencing the following problem when using the pdfViewer in FitFullPage mode : the pdf opens correctly but "disappears" when we resize the pdf viewer.
Unplanned
Last Updated: 13 Sep 2023 14:20 by ADMIN
If the DataError is handled, you can detect what kind of internal errors occur. The document is loaded successfully at the end. If the thumbnails menu is hidden, the load time is much faster.
Unplanned
Last Updated: 28 Aug 2023 11:58 by ADMIN

Load a document with bookmarks and select the bookmarks options. Then, move the splitter:

Expected: the selected option (bookmarks) is unchanged

Actual: the selected option (bookmarks) is not preserved and it is reset

 
Completed
Last Updated: 16 Aug 2023 10:51 by ADMIN
Release R3 2023 (LIB 2023.2.816)
Created by: Patric
Comments: 1
Category: PdfViewer
Type: Bug Report
1
In some specific PDF documents, when it is shown in the PdfViewer, the text is missing. This behavior is not observed in the R1 2023 version of our controls. With the R1 2023 SP1 some documents are not visualized correctly.
Completed
Last Updated: 18 Jul 2023 14:26 by ADMIN
Release R2 2023 SP1

When creating many instances of RadPdfViewer:

        static void Main(string[] args)
        {
            int i = 1;
            try
            {
                Stopwatch stopwatch = Stopwatch.StartNew();
                while (true)
                {
                    using (RadPdfViewer pdfViewer = new RadPdfViewer())
                    {

                    }
                    Console.WriteLine($"iteration {i}, elapsed seconds: {stopwatch.Elapsed.TotalSeconds}");
                    i++;
                }
            }
            catch (Exception e)
            {
                Console.WriteLine($"Exception occurred at iteration {i}");
                Console.WriteLine(e);
                Console.ReadLine();
            }
        }

the following error occurs:  

System.Runtime.InteropServices.ExternalException (0x80004005): A generic error occurred in GDI+.
   at System.Drawing.Bitmap.GetHicon()
   at Telerik.WinControls.PdfViewer.MouseHandlers.PanHandler..ctor(MouseHandlersController controller, IFixedDocumentPresenter presenter)
   at Telerik.WinControls.PdfViewer.MouseHandlers.MouseHandlersController.BuildHandlers(IFixedDocumentPresenter presenter)
   at Telerik.WinControls.PdfViewer.MouseHandlers.MouseHandlersController..ctor(IFixedDocumentPresenter presenter)
   at Telerik.WinControls.UI.RadPdfViewerElement..ctor()
   at Telerik.WinControls.UI.RadPdfViewer.CreateViewerElement()
   at Telerik.WinControls.UI.RadPdfViewer.CreateChildItems(RadElement parent)
   at Telerik.WinControls.RadControl.Telerik.WinControls.IComponentTreeHandler.CreateChildItems(RadElement parent)
   at Telerik.WinControls.RadElementTree.InitializeRootElement()
   at Telerik.WinControls.RadControl.Construct()
   at Telerik.WinControls.RadControl..ctor()
   at Telerik.WinControls.UI.RadPdfViewer..ctor()
1 2 3 4 5 6