Unplanned
Last Updated: 18 May 2018 14:17 by Georgi
When ScaleMode is set to FitToPage scrolling the Mousewheel or pressing the Arrow Down button does not produce immediate scroll. The page is scrolled to the next page after several scroll events/button presses are introduced.

Workaround: Provide custom ScrollCommand implementation.
Unplanned
Last Updated: 18 May 2018 14:17 by Georgi
ADMIN
Created by: Georgi
Comments: 0
Category: PDFViewer
Type: Feature Request
0
Currently the minimal zoom out value is 0.8% which impacts the performance while scrolling large documents.
Completed
Last Updated: 14 Jun 2018 14:45 by ADMIN
The width values from the widths PDF property should be taken with priority compared to the font file calculations.

Fix available in R2 2018 SP1 release version.
Unplanned
Last Updated: 01 Jun 2018 12:54 by ADMIN
The issue is reproducible only on Windows XP. On newer versions of windows, the images are rendered as expected.

WORKAROUND: You may inherit DctDecode class in order to implement custom decoder. For instance, you may try calling DecodeWithJpegDecoder method from the base class as mentioned in the note of this documentation article:

http://docs.telerik.com/devtools/wpf/controls/radpdfviewer/customization-and-extensibility/customize-pdf-rendering

A sample implementation of these custom decoder may be seen below:

public class CustomDctDecode : DctDecode
{
    public override byte[] Decode(PdfObject decodedObject, byte[] inputData, DecodeParameters parms)
    {
        return DecodeWithJpegDecoder(inputData);
    }
}
Unplanned
Last Updated: 19 Jun 2018 13:42 by ADMIN
When Find Next is used multiple times fast, and pages are still loaded asynchronously, sometimes NullReferenceException is thrown with the following call stack:

System.NullReferenceException: Object reference not set to an instance of an object.
   at Telerik.Windows.Documents.Fixed.Text.TextRecognizer.GetLastCharacter()
   at Telerik.Windows.Documents.Fixed.Text.TextRecognizer.IsLineBreak(Glyph glyph)
   at Telerik.Windows.Documents.Fixed.Text.TextRecognizer.ProcessGlyph(Glyph glyph)
   at Telerik.Windows.Documents.Fixed.Text.TextRecognizer.CreateTextPage(RadFixedPageInternal page)
   at Telerik.Windows.Documents.Fixed.Text.TextDocument.GetTextPage(Int32 index)
   at Telerik.Windows.Documents.Fixed.Search.KMPTextSearch.FindNext(TextDocument document, TextPosition startPosition, String searchText, Boolean matchCase, Boolean wholeWordsOnly)
   at Telerik.Windows.Documents.Fixed.Search.TextSearch.Find(String text, TextSearchOptions options)

...
Unplanned
Last Updated: 14 Aug 2018 18:11 by ADMIN
ADMIN
Created by: Tanya
Comments: 0
Category: PDFViewer
Type: Feature Request
0
A similar scenario is not defined in the PDF specification but the widgets can be rendered as read-only fields despite the fields associated with them are missing.
Completed
Last Updated: 16 Sep 2020 12:18 by ADMIN
Release R3 2020
ADMIN
Created by: Tanya
Comments: 0
Category: PDFViewer
Type: Feature Request
0
This is Unicode (UTF-16BE) encoding for the Adobe-GB1 character collection; contains mappings for all characters in the GB18030-2000 character set.

Described on page 443 in Pdf Reference 1.7.
Completed
Last Updated: 03 Dec 2018 12:41 by ADMIN
This might result in invisible annotations.
Completed
Last Updated: 19 Feb 2019 13:40 by ADMIN
When using the Fluent theme and the NoXaml binaries the above mentioned design time exception is thrown.
Completed
Last Updated: 08 Feb 2019 13:50 by ADMIN
Created by: Frank
Comments: 1
Category: PDFViewer
Type: Bug Report
0
The current page changes too late, almost when the whole page is out of the view. This behavior is wrong making the page number showing the previous page when actually a new one is in the view. It should change when the second page visible height is higher than the current page visible height.
Completed
Last Updated: 16 Sep 2020 12:37 by ADMIN
Release R3 2020
The offset of the CropBox is not respected and is always treated as 0.

Workaround: Import the document with PdfProcessing, change the CropBox offsets of the pages to 0, export the modified document and then import it in PdfViewer.
Completed
Last Updated: 03 Sep 2019 08:02 by ADMIN
Release R3 2019
Right now an exception is not raised for gruop3 2d encoding.
Completed
Last Updated: 01 Oct 2019 13:27 by ADMIN
Release 2019.3.1007 (10/07/2019)
When RadPdfViewer is created on UI thread different than the Application main thread, an InvalidOperationException: 'The calling thread cannot access this object because a different thread owns it.' is thrown when calling the Copy method.
Completed
Last Updated: 14 Feb 2020 11:08 by ADMIN
Release R1 2020 SP1
Created by: Dimitar
Comments: 0
Category: PDFViewer
Type: Bug Report
0

Use the attached project to reproduce. 

Workaround:

var combo = toolbar.ChildrenOfType<PercentComboBox>().FirstOrDefault();

var binding = new System.Windows.Data.Binding();
binding.Path = new System.Windows.PropertyPath("ScaleFactor");
binding.Mode = System.Windows.Data.BindingMode.TwoWay;
binding.Source = pdfViewer;
binding.UpdateSourceTrigger = System.Windows.Data.UpdateSourceTrigger.PropertyChanged;
BindingOperations.SetBinding(combo, PercentComboBox.ValueProperty, binding);

var binding1 = new System.Windows.Data.Binding();
binding1.Source = pdfViewer;
BindingOperations.SetBinding(combo, PercentComboBox.RadPdfViewerProperty, binding);

Completed
Last Updated: 24 Feb 2020 11:00 by ADMIN
Release LIB 2020.1.224 (02/24/2020)
When importing the document as DocumentSource the stream will be loaded asynchronously and the document won't be loaded when the Print() method is called, NullReferenceException is thrown.
Completed
Last Updated: 27 Jun 2023 11:55 by ADMIN
Release R2 2023 SP1
When saving Form Fields in document defined with linearized PDF structure, it produces a document that fails to open in Edge.

The current implementation of the RadPdfViewer Save uses the incremental update feature. However, the incremental update doesn't comply with the linearized structure and the document fails to open in some viewers.

Workaround: Import/export the document with PdfPRocessing to remove the linearization feature.
Completed
Last Updated: 01 Jun 2020 12:36 by ADMIN
Release LIB 2020.2.608 (06/08/2020)
User is not able to type in the form fields on touch devices.
Completed
Last Updated: 03 Aug 2020 08:14 by ADMIN
Release LIB 2020.2.803 (03/08/2020)
Created by: Mark
Comments: 0
Category: PDFViewer
Type: Bug Report
0
After saving a document from PdfViewer, it cannot be opened by other applications as it is still locked.
Unplanned
Last Updated: 13 Aug 2020 16:59 by ADMIN
Importing a document, which contains pages with many geometries - such as paths, lines, and curves leads to degraded scrolling performance.
Completed
Last Updated: 29 Sep 2020 12:45 by ADMIN
Release LIB 2020.3.1005 (05/10/2020)
When importing a document containing an ICCBased color space an exception is thrown.