Completed
Last Updated: 13 Mar 2019 17:15 by ADMIN
Release 2018.3.1016
ADMIN
Created by: Stefan
Comments: 1
Category: PdfViewer
Type: Feature Request
16
Add bookmarks functionality
Unplanned
Last Updated: 28 Sep 2018 11:24 by Jane
ADMIN
Created by: Stefan
Comments: 3
Category: PdfViewer
Type: Feature Request
21
Add UI for adding comments and ability to save them. Comments are represented in the document model as text annotations (annotations with Subtype Text). 
Completed
Last Updated: 24 Jul 2014 08:27 by ADMIN
This issue can be observed when the text is too big to fit in cell.
Unplanned
Last Updated: 13 Dec 2016 14:41 by ADMIN
When clicking on link annotations pointing to destinations in the document, and the "Fit one full page to window" mode is activated, the document is not scrolled exactly to the destination.

The issue can be reproduced only in Single Page Presenter mode and when the Top and Left values of the passed parameter are greater than 0.

The problem can also be observed by invoking directly GoToDestination method, as the problem is inside it.
Completed
Last Updated: 21 Apr 2015 14:31 by ADMIN
ADD. RadPdfViewer - add ability to show the document pages as thumbnails
Completed
Last Updated: 12 Oct 2017 06:36 by ADMIN
ADMIN
Created by: Nikolay
Comments: 7
Category: PdfViewer
Type: Feature Request
20
It will be a great addition of RadPdfViewer if it supports forms/controls.
Completed
Last Updated: 28 May 2015 13:30 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PdfViewer
Type: Bug Report
3
To reproduce:
- Load a pdf file at the constructor and try to load another pdf file on Form.Load => the result is that the second pdf is not loaded.
 public Form1()
        {
            InitializeComponent();
            radPdfViewer1.LoadDocument("..\\..\\pdfSample.pdf");

        }

        private void Form1_Load(object sender, EventArgs e)
        {
            radPdfViewer1.LoadDocument("..\\..\\test.pdf");
        }

Workaround: unload the first loaded document prior loading the second one
Completed
Last Updated: 20 Oct 2014 13:56 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: PdfViewer
Type: Bug Report
1
Line Style is not taken into consideration.
Completed
Last Updated: 23 Nov 2016 12:39 by ADMIN
Add an option to save and/or email document. It is especially useful if a file stream is loaded into the viewer.

Currently, the following approach can be used: 
private Stream GetPdfStream()
{

Type documentType = this.radPdfViewer1.PdfViewerElement.Document.GetType();

FieldInfo internalDocumentField = documentType.GetField("internalDocument", BindingFlags.NonPublic | BindingFlags.Instance);

object internalDocumentValue = internalDocumentField.GetValue(this.radPdfViewer1.PdfViewerElement.Document);

FieldInfo formatProviderField = internalDocumentValue.GetType().GetField("formatProvider", BindingFlags.NonPublic | BindingFlags.Instance);

PdfFormatProvider formatProvder = formatProviderField.GetValue(internalDocumentValue) as PdfFormatProvider;

FieldInfo field = formatProvder.GetType().GetField("stream", BindingFlags.NonPublic | BindingFlags.GetField | BindingFlags.Instance);

Stream stream = field.GetValue(formatProvder) as Stream;
return stream;
}
Declined
Last Updated: 28 Aug 2014 11:34 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: PdfViewer
Type: Bug Report
0
There are cases in which some of the images in a pdf file appear with inverted colors.

Resolution: 
The issue is duplicated with feedback item FIX. RadPDFViewer shows wrong colors
Here is the link to item:  http://feedback.telerik.com/Project/154/Feedback/Details/111786-fix-radpdfviewer-shows-wrong-colors
Declined
Last Updated: 05 Jun 2014 07:07 by ADMIN
FIX. When printing a document using the PrintDocument Control, an 5mm Margin is added to the Top and Left.

Resolution: The most of printers set bigger margins in left and top.  You can set the Margins of RadPrintDocument to 0. 
Completed
Last Updated: 11 Jan 2021 09:36 by ADMIN
Release R1 2021
ADMIN
Created by: Peter
Comments: 4
Category: PdfViewer
Type: Feature Request
23
A dictionary specifying any resources (such as fonts and images) required by the form XObject (see Section 3.7 from http://partners.adobe.com/public/developer/en/pdf/PDFReference.pdf
Completed
Last Updated: 05 Jun 2014 07:07 by Jesse Dyck
RadPdfViewer has problems displaying a PDF with text in front of an image.
Completed
Last Updated: 14 Dec 2016 12:22 by ADMIN
ADMIN
Created by: Nikolay
Comments: 0
Category: PdfViewer
Type: Feature Request
8
It will be a nice addition to RadPdfViewer if it can export page thumbnails as an image.
Completed
Last Updated: 29 Jul 2014 15:16 by ADMIN
Use the document from the ticket in order to reproduce the issue.
Completed
Last Updated: 05 Jun 2014 07:07 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: PdfViewer
Type: Bug Report
6
The RadPDFViewer cannot dispose the current PDF document.
Completed
Last Updated: 23 May 2014 09:41 by ADMIN
RadPdfViewer does not show text when pdf document is loaded.All pages are black.
Declined
Last Updated: 25 Sep 2014 09:48 by Maverick
The RadPdfViewer throws ArgumentNullException when loading pdf file. - "Value cannot be null.Parameter name: page"
Completed
Last Updated: 20 Oct 2014 11:59 by Svetlin
When you zoom the RadPdfViewer programatically when scrolling position is changed to another page.
Completed
Last Updated: 30 Nov 2014 22:00 by ADMIN
1. Create a new project with RadPdfViewer. 

2. Try to load the pdf file from this ticket.