Unplanned
Last Updated: 17 Jan 2019 07:43 by ADMIN
When the user makes the pinch gesture the expected behavior would be for the zoomed point to be the touch position, but it is instead the top left corner of the page.
Unplanned
Last Updated: 15 Jan 2019 15:25 by ADMIN
WPF allows running multiple UI threads in a single process. When RadPdfViewer is used in such scenarios, sometimes InvalidOperationException: 'The calling thread cannot access this object because a different thread owns it.' is thrown. 

Scenarios:
- Show Find dialog (or any other of the dialogs available for register in ExtensibilityManager class) for the first instance, the for the second instance.
Completed
Last Updated: 21 Jan 2019 08:54 by ADMIN
Hyperlinks within a document are not working via touch. They are working only when a mouse is used.
Declined
Last Updated: 28 Dec 2018 09:16 by ADMIN

The exception is thrown with the message "Password is not correct" even when the user password is correct. This issue occurs for specific encryption algorithm parameters only.

Item is declined because this functionality is not supported and has a logged feature request to support it.

Completed
Last Updated: 27 Jun 2023 08:46 by ADMIN
Release R2 2023 SP1
By specification, when some of the destination parameters have null value, the current value of that parameter is to be retained unchanged (This rule applies for most of the properties). For example, if Location (XYZ) destination is imported and any of the left, top, or zoom parameters is null, the current value of the visual viewport for the specified property should be retained. 

Workaround: Edit the document destinations and set default values. For example if the document contains Location destinations the Left, Top and Zoom properties can be set:
foreach (var annotation in document.Annotations)
{
    Link link = annotation as Link;
    if (annotation != null)
    {
        if (link.Destination is Location location)
        {
            location.Left = location.Left != null ? location.Left : 0;
            location.Top = location.Top != null ? location.Top : 0;
            location.Zoom = location.Zoom != null ? location.Zoom : 1;
        }
    }
}
Completed
Last Updated: 03 Aug 2020 08:14 by ADMIN
Release LIB 2020.2.803 (03/08/2020)
ADMIN
Created by: Anna
Comments: 2
Category: PDFViewer
Type: Bug Report
1
Some files when opened with PdfViewer will throw a KeyNotFoundException which will be handled. Parts of the text in the file might or might not be missing.
Completed
Last Updated: 25 Oct 2018 13:10 by ADMIN
Customers are reporting an issue when trying to copy content in an application hosted on a remote machine (there are reports using TigerVNC and Citrix).  The exception is thrown from the Clipboard class with a message: OpenClipboard failed (Exception from HRESULT: 0x800401D0 (CLIPBRD_E_CANT_OPEN)).

It seems like such a behavior could be reproduced when the clipboard is already opened by another application. Here is a discussion on the matter: https://stackoverflow.com/questions/68666/clipbrd-e-cant-open-error-when-setting-the-clipboard-from-net

Fix available in LIB Version 2018.3.1029.
Completed
Last Updated: 03 Dec 2018 12:41 by ADMIN
This might result in invisible annotations.
Completed
Last Updated: 26 Jun 2023 13:56 by ADMIN
Release R2 2023 SP1
When the file has an annotation with a destination and this destination is missing from the destinations (Dests) collection of the catalogue, KeyNotFoundException is thrown when you try to scroll to the page where the annotation is located. A better behavior would be for nothing to happen when trying to click on the annotation leading to the destination.
Unplanned
Last Updated: 04 Oct 2018 08:57 by ADMIN
The hierarchical document structure is a means to describe the PDF document structure, which is currently not supported. See 10.6.1 Structure Hierarchy on 856 page of the PDF specification for details.
This document structure is an alternative to the standard PDF structure and most non-Adobe software does not support it.

The document might have been created with Adobe software like Adobe LiveCycle Designer. Very often the document contains some fallback text in the standard PDF structure like:
"Please wait... If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document."
"The document you are trying to load requires Adobe Reader 8 or higher. You may not have the Adobe Reader installed or your viewing environment may not be properly configured to use Adobe Reader. For information on how to install Adobe Reader and configure your viewing environment please see  http://www.adobe.com/go/pdf_forms_configure."
"For the best experience, open this PDF portfolio in Acrobat X, Reader X, or later."
Unplanned
Last Updated: 28 Sep 2018 11:23 by ADMIN
ADMIN
Created by: Boby
Comments: 0
Category: PDFViewer
Type: Feature Request
8
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: 19 Jan 2023 14:56 by ADMIN
Release R1 2023
When a ToUnicode CMap is defined for Simple Font (TrueType or Type1 font) which maps font character codes to two or more Unicode character values, the extracted text should contain the whole set of characters defined in the mappings. The current implementation of RadPdfViewer takes the first character specified in the ToUnicode mapping which leads to missing characters.
Unplanned
Last Updated: 07 Sep 2018 15:34 by ADMIN
The rendering of images with size ~5000/6000 and BitsPerComponent=1 is time-consuming. The scenario is optimized in terms of memory but would be nice to increase the performance as well.
Unplanned
Last Updated: 04 Oct 2018 06:49 by ADMIN
Add built-in localization for the UI control and its tooltips. Currently they can be localized by expanding the XAML of RadPdfViewerToolBar and adding the required resources to the code.
Unplanned
Last Updated: 03 Sep 2018 09:52 by ADMIN
ADMIN
Created by: Anna
Comments: 0
Category: PDFViewer
Type: Feature Request
1
At the moment the AnnotationsHandler, SelectionHandler and PanHandler cannot be removed or disabled. It would be convenient for this to be possible.
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.
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: 01 Aug 2018 12:35 by ADMIN
ADMIN
Created by: Deyan
Comments: 0
Category: PDFViewer
Type: Bug Report
1
Instead, we should not visualize them and they should not be interactable with the mouse.

Fix available in LIB Version 2018.2.730.
Completed
Last Updated: 01 Aug 2018 14:12 by ADMIN
When importing documents containing Interactive FormFields with an empty collection of Normal state appearances, a NullReferenceException is thrown, which leads to non-editable FormFields in PdfViewer.

Fix available in LIB Version 2018.2.730.
Completed
Last Updated: 26 Jun 2023 13:07 by ADMIN
Release R2 2023 SP1
It seems that the glyph outlines are rendered wrong for some specific CFF font files. For instance, the issue is reproducible with "Aleo-Light" font.