In Development
Last Updated: 14 Mar 2024 12:50 by ADMIN
The editor size should be limited to the size of the widget. Currently on is able to enter more than one line in a textbox and when the content is not visible and it is cut off when flattening. 
Duplicated
Last Updated: 26 Feb 2024 11:55 by ADMIN
ADMIN
Created by: Hristo
Comments: 2
Category: PdfViewer
Type: Feature Request
1

			
Declined
Last Updated: 16 Feb 2024 22:19 by ADMIN
Created by: Haithem
Comments: 2
Category: PdfViewer
Type: Bug Report
0

Hello 

 

I am have a problem with pdf wiewer when the PDF file contains an images , it is slow in movement and it is difficult to navigate between pages. Is it possible to fix this problem 

 

 

Unplanned
Last Updated: 16 Feb 2024 12:30 by ADMIN
Created by: Henk
Comments: 0
Category: PdfViewer
Type: Bug Report
0
PDFViewer: GotoDestination(Destination) is off vertically
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
Completed
Last Updated: 20 Nov 2023 07:41 by ADMIN
Release R3 2023 SP1 (2023.3.1114)
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.

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: 16 Oct 2023 11:55 by ADMIN

This is the result with R3 2022:

 

 

This is the result with R2 2023 SP1:

 

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: 11 Aug 2023 04:05 by ADMIN

Is there a way to load this RadFixedDocument into a RadPdfViewer without writing the document to a file first and then loading it in the viewer?

Workaround:

You can achieve the desired functionality by exporting the RadFixedDocument to a MemoryStream instead of a file in the file system and then load it in the PdfViewer: 

RadFixedDocument document = CreateRadFixedDocument();

PdfFormatProvider pdfFormatProvider = new PdfFormatProvider();
Stream ms = new MemoryStream();
pdfFormatProvider.Export(document, ms);

radPdfViewer1.LoadDocument(ms);

 

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()
Completed
Last Updated: 18 Jul 2023 14:26 by ADMIN
Release R2 2023 SP1
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 2
Category: PdfViewer
Type: Bug Report
4
Handled InvalidDataException occurs while Zip Library tries to decompress wrongly decrypted stream.
Completed
Last Updated: 18 Jul 2023 14:26 by ADMIN
Release R2 2023 SP1
Completed
Last Updated: 07 Jun 2023 10:39 by ADMIN
Release R2 2023 (2023.2.606)
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
1
According to PDF format specification, there are three valid encoding name values (MacRomanEncoding, MacExpertEncoding and WinAnsiEncoding). There are documents that instead of skipping the optional Encoding property, are writing invalid /NULL name value in the font dictionary. Currently, in this invalid document scenario RadPdfViewer throws and catches Exception and this results in missing text content. 

We may handle this invalid document scenario by ignoring the invalid Encoding value.
Completed
Last Updated: 07 Jun 2023 10:38 by ADMIN
Release R2 2023 (2023.2.606)
Unplanned
Last Updated: 08 May 2023 07:17 by ADMIN
Created by: Christopher
Comments: 1
Category: PdfViewer
Type: Feature Request
0

Add functionality for a PDF form filler that supports text auto-sizing/shrinking like Adobe:

Unplanned
Last Updated: 27 Apr 2023 11:39 by Gurmeet
Created by: Gurmeet
Comments: 0
Category: PdfViewer
Type: Feature Request
0
Introduce locking a document opened in viewer.
1 2 3 4 5 6