Completed
Last Updated: 01 Oct 2014 13:13 by ADMIN
Declined
Last Updated: 01 Sep 2015 10:10 by ADMIN
To reproduce:
Open the attached document. You will see that it will be rendered blank due to the NotSupportedException

Resolution: 
This is an unsupported font from our engine. In debug the SL PDF also throw this exception, since the engine does not support this font type. WinForms PDF rendered this documents with delay.
Completed
Last Updated: 25 Jul 2014 09:44 by ADMIN
To reproduce:

On a button click call the following method:

radPdfViewer.Print(true);

Select the CurrentPage radio button in the showed dialog and click print. You will see the IndexOutOfRange exception.



Workaround:

When the dialog opens select the Pages radio button and and type in the page you want to print
Completed
Last Updated: 16 May 2016 08:40 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
0

			
Completed
Last Updated: 28 Nov 2014 06:40 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
0

			
Completed
Last Updated: 18 Nov 2014 09:34 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Bug Report
0
To reproduce:
1.Load a document
2.Click the print button on the RadPdfViewerNavigator

Please refer to the attached gif file. The sample pdf file is attached as well.
Completed
Last Updated: 13 Nov 2014 07:52 by ADMIN
ADMIN
Created by: Stefan
Comments: 0
Category: PdfViewer
Type: Bug Report
0

			
Completed
Last Updated: 31 Mar 2015 16:24 by ADMIN
To reproduce: 
1. Drag and drop RadPdfViewer and RadPdfViewerNavigator
2. Load attached file from ticket
3. Click PrintPreview button from navigator and you will see that NullRefference exception is thrown. 

Workaround: 
You can set the ShowPrintPreview property to false of RadPrintViewNavigator
this.radPdfViewerNavigator1.ShowPrintPreview = false;
Completed
Last Updated: 18 Feb 2015 14:43 by ADMIN
If the document is using fonts that are not embedded and are not installed on client machine the text is not displayed.
 
Unplanned
Last Updated: 30 Mar 2016 09:48 by ADMIN
Unplanned
Last Updated: 30 Mar 2016 10:04 by ADMIN
Workaround: update manually the RadPdfViewerNavigator.CurrentPageTextBox.
Completed
Last Updated: 26 Apr 2016 12:10 by ADMIN
Completed
Last Updated: 24 Oct 2016 12:55 by ADMIN
To reproduce:

public Form1()
{
    InitializeComponent();

    radPdfViewer1.DocumentLoaded += radPdfViewer1_DocumentLoaded;
    radPdfViewer1.LoadDocument(@"..\..\TestDocument.pdf");
}

void radPdfViewer1_DocumentLoaded(object sender, EventArgs e)
{
    var pdfViewerElement = sender as RadPdfViewerElement;

    if (pdfViewerElement != null)
    {
        var myDocumentToPrint = new RadPrintDocument();
        myDocumentToPrint.AssociatedObject = pdfViewerElement;
        myDocumentToPrint.DefaultPageSettings.Margins = new System.Drawing.Printing.Margins(0, 0, 0, 0);
        myDocumentToPrint.Print();
    }
}
 
Please refer to the attached screenshots and sample pdf.

Workaround:  Specify the RadPrintDocument.DefaultPageSettings.Margins property on a way to have the right margin greater than 0 
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN
ADMIN
Created by: Ivan Todorov
Comments: 0
Category: PdfViewer
Type: Feature Request
0
The PdfPrintPreviewDialog should allow the end user to resize it and the page preview in it should scale accordingly. This would allow the user to have a better preview of the print settings.
Completed
Last Updated: 26 Oct 2015 15:38 by ADMIN
ADMIN
Created by: Dess | Tech Support Engineer, Principal
Comments: 0
Category: PdfViewer
Type: Feature Request
0
http://docs.telerik.com/devtools/wpf/controls/radpdfviewer/document-model/exceptionhandling
Unplanned
Last Updated: 26 Mar 2018 10:47 by ADMIN
Completed
Last Updated: 26 Oct 2015 15:37 by ADMIN
Unplanned
Last Updated: 15 Aug 2017 10:02 by ADMIN